라는 클래스를 사용 하여 첫 번째 h1
내부 를 선택하려고합니다 . 이 안에있는 첫 번째 요소 이면 작동 하지만이 뒤에 오면 작동하지 않습니다.div
detail_container
h1
div
ul
<style type="text/css">
.detail_container h1:first-child
{
color:blue;
}
</style>
</head>
<body>
<div class="detail_container">
<ul>
<li></li>
<li></li>
</ul>
<h1>First H1</h1>
<h1>Second H1</h1>
</div>
</body>
</html>
나는 내가 가진 CSS h1
가 이것이 어디에 있든 첫 번째를 선택할 것이라는 인상을 받았다 div
. 어떻게 작동시킬 수 있습니까?