CSS 요소 유형 선택기는 유형의 모든 요소를 선택하는 데 사용됩니다. CSS 요소 유형 선택자의 구문은 다음과 같습니다.
구문
element {
/*declarations*/
} 예시
다음 예는 CSS 요소 유형 선택기를 보여줍니다.
<!DOCTYPE html>
<html>
<head>
<style>
li {
list-style: none;
margin: 5px;
border-bottom-style: dotted;
}
div {
box-shadow: inset 0 0 8px plum;
padding: 36px;
}
</style>
</head>
<body>
<div>
<pre> \(╪)(╪) /</pre>
<ul>
<li></li>
<li></li>
</ul>
</div>
</body>
</html>