#dropdown1-content img { vertical-align: top; background-color: gainsboro; } #dropdown2-content img { vertical-align: top; background-color: gainsboro; } .dropdown { position: relative; display: inline-block; } .dropdown-content a { color: black; /* 드롭다운 메뉴 항목의 글자 색상을 검은색으로 유지 */ padding: 12px 16px; text-decoration: none; display: block; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); z-index: 1; } .dropdown-content a { color: black !important; /* 강제로 검은색 적용 */ } .dropdown-content a:hover p { color: #51e6ef; } .dropdown-content a:hover { background-color: rgba(81, 230, 239, 0.1); } .dropdown:hover .dropdown-content { display: block; } .dropdown:hover .dropbtn { background-color: rgba(81, 230, 239, 1.0); } .dropdown-content p{ margin: 0; font-size: 0.7em; font-weight: bold; }