<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>호버한 메뉴 외 나머지 흐려지는 네비게이션</title>
<style>
body {
margin: 0;
}
.container {
background-color: royalblue;
height: 100vh;
position: relative;
}
.box {
/* border: 1px solid black; */
width: 250px;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.box a {
display: block;
color: white;
text-decoration: none;
padding: 10px 0px 10px 30px;
font-size: 1.5em;
opacity: 1;
transition: 0.5s;
}
.box:hover a {
opacity: 0.3;
}
a:hover {
opacity: 1;
}
</style>
</head>
<body>
<div class="container">
<div class="box">
<a href="#">New Arrivals</a>
<a href="#">Summer Collection</a>
<a href="#">Winter Collection</a>
<a href="#">Special Offers</a>
<a href="#">Trends</a>
</div>
</div>
</body>
</html>
a:hover하면 작동이 안되고 .box a:hover 하면 작동이되는데
이건 구체성의 차이인가요 ?
그리구 순서가 바뀌면 안되는 이유가 하나만 적용이 되는건데
왜 하나만 적용이 되는지 궁금합니다 -!