Files
css-examples/src/selectors.html
2024-06-12 17:02:21 +09:00

24 lines
500 B
HTML

<!--
~ Copyright (c) 2024. Elex. All Rights Reesrved.
~ https://www.elex-project.com/
-->
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>CSS Selectors</title>
<style>
div *:first-child {
color: red;
}
</style>
</head>
<body>
<div>
<p>이것은 첫 번째 문단입니다.</p>
<p>그리고, 이것은 두번째 문단입니다.</p>
<p>마지막으로, 이것은 세번째 문단입니다.</p>
</div>
</body>
</html>