Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS의 자식 선택자

<시간/>

CSS 자식 선택기는 특정 부모 요소가 있는 모든 자식 요소를 선택하는 데 사용됩니다.

구문

CSS 자식 선택자의 구문은 다음과 같습니다-

element > element {
/*declarations*/
}

예시

다음 예는 CSS 자손 선택자를 보여줍니다 -

<!DOCTYPE html>
<html>
<head>
<style>
* {
   padding: 5px;
}
article > div {
   border: dashed midnightblue;
   width: 45%;
}
div > p {
   font-size: 20px;
   font-style: italic;
   box-shadow: inset 0 0 8px orange;
}
</style>
</head>
<body>
<h2>Examination Detail</h2>
<article>
   <div>Exam Details</div>
   <div><p>Exam begins at 11AM.</p></div>
   <span><div> Do not bring cell phone.</div></span>
   <div>
   <div>Candidates should reach the center till 10:45.</div>
   <br/>
   The candidates need to be bring the Admit Card.
   </div>
</article>
</body>
</html>

출력

이것은 다음과 같은 출력을 제공합니다.

CSS의 자식 선택자

예시

<!DOCTYPE html>
<html>
<head>
<style>
div {
   margin: auto;
   width: 200px;
   padding: 30px;
   background-color: moccasin;
}
div > div {
   box-shadow: inset 0 0 8px mediumseagreen;
   border-top-right-radius: 50%;
   border-bottom-left-radius: 50%;
}
</style>
</head>
<body>
<div>
<div></div>
</div>
</body>
</html>

출력

이것은 다음과 같은 출력을 제공합니다.

CSS의 자식 선택자