CSS 의사 클래스 및 의사 요소
이 문서는 CSS 의사 클래스와 의사 요소를 설명합니다.
:hover
와 같은 의사 클래스와 ::before
와 같은 의사 요소에 대해 배울 수 있습니다.
YouTube Video
미리보기를 위한 HTML
css-pseudo.html
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>CSS Pseudo Class/Element</title>
7 <link rel="stylesheet" href="css-base.css">
8 <link rel="stylesheet" href="css-pseudo-class.css">
9</head>
10<body>
11 <!-- Header -->
12 <header>
13 <h1>CSS Pseudo Class/Element</h1>
14 </header>
15
16 <!-- Main content -->
17 <main>
18 <header><h2>Pseudo Class</h2></header>
19 <article>
20 <h3>:hover</h3>
21 <section>
22 <header><h4>CSS</h4></header>
23<pre class="sample">
24a:hover {
25 color: red;
26}
27</pre>
28 <header><h4>HTML</h4></header>
29 <pre><a href="#">Example of hover</a></pre>
30 <header><h4>HTML+CSS</h4></header>
31 <section class="sample-view">
32 <a href="#">Example of hover</a><br>
33 </section>
34 </section>
35 </article>
36 <article>
37 <h3>:focus</h3>
38 <section>
39 <header><h4>CSS</h4></header>
40<pre class="sample">
41input:focus {
42 outline: 2px solid blue;
43}
44</pre>
45 <header><h4>HTML</h4></header>
46 <pre><input type="text" placeholder="Example of focus"></pre>
47 <header><h4>HTML+CSS</h4></header>
48 <section class="sample-view">
49 <input type="text" placeholder="Example of focus">
50 </section>
51 </section>
52 </article>
53 <article>
54 <h3>:active</h3>
55 <section>
56 <header><h4>CSS</h4></header>
57<pre class="sample">
58button:active {
59 background-color: green;
60}
61</pre>
62 <header><h4>HTML</h4></header>
63 <pre><button type="button">Example of active</button></pre>
64 <header><h4>HTML+CSS</h4></header>
65 <section class="sample-view">
66 <button type="button">Example of active</button>
67 </section>
68 </section>
69 </article>
70 <article>
71 <h3>:empty</h3>
72 <section>
73 <header><h4>CSS</h4></header>
74<pre class="sample">
75.box:empty {
76 background-color: lightgray;
77 border: 1px dashed black;
78 height: 50px;
79 width: 50px;
80}
81</pre>
82 <header><h4>HTML</h4></header>
83<pre>
84<p class="box"></p>
85<p class="box"> </p>
86</pre>
87 <header><h4>HTML+CSS</h4></header>
88 <section class="sample-view">
89 <p class="box"></p>
90 <p class="box"> </p>
91 </section>
92 </section>
93 </article>
94 <article>
95 <h3>:valid / :invalid</h3>
96 <section>
97 <header><h4>CSS</h4></header>
98<pre class="sample">
99input:valid {
100 border: 2px solid green;
101 background-color: #eaffea;
102}
103
104input:invalid {
105 border: 2px solid red;
106 background-color: #ffeaea;
107}
108</pre>
109 <header><h4>HTML</h4></header>
110<pre>
111<form>
112 <label>Username (min. 5 characters):</label>
113 <input type="text" pattern=".{5,}" required>
114 <button type="submit">Submit</button>
115</form>
116</pre>
117 <header><h4>HTML+CSS</h4></header>
118 <section class="sample-view">
119 <form>
120 <label>Username (min. 5 characters):</label>
121 <input type="text" pattern=".{5,}" required>
122 <button type="submit">Submit</button>
123 </form>
124 </section>
125 </section>
126 </article>
127 <article>
128 <h3>:in-range / :out-of-range</h3>
129 <section>
130 <header><h4>CSS</h4></header>
131<pre class="sample">
132input[type="number"]:in-range {
133 border: 2px solid blue;
134 background-color: #eaf4ff;
135}
136
137input[type="number"]:out-of-range {
138 border: 2px solid orange;
139 background-color: #fff4e6;
140}
141</pre>
142 <header><h4>HTML</h4></header>
143<pre>
144<form>
145 <label>Age (between 18 and 99):</label>
146 <input type="number" min="18" max="99" required>
147 <button type="submit">Submit</button>
148</form>
149</pre>
150 <header><h4>HTML+CSS</h4></header>
151 <section class="sample-view">
152 <form>
153 <label>Age (between 18 and 99):</label>
154 <input type="number" min="18" max="99" required>
155 <button type="submit">Submit</button>
156 </form>
157 </section>
158 </section>
159 </article>
160 <article>
161 <h3>:nth-child(n)</h3>
162 <section>
163 <header><h4>CSS</h4></header>
164<pre class="sample">
165li:nth-child(2) {
166 color: blue;
167 font-weight: bold;
168}
169
170li:nth-child(odd) {
171 background-color: lightblue;
172}
173
174li:nth-child(even) {
175 background-color: steelblue;
176}
177</pre>
178 <header><h4>HTML</h4></header>
179<pre>
180<ul>
181 <li>First Item</li>
182 <li>Second Item</li>
183 <li>Third Item</li>
184 <li>Fourth Item</li>
185</ul>
186</pre>
187 <header><h4>HTML+CSS</h4></header>
188 <section class="sample-view">
189 <ul>
190 <li>First Item</li>
191 <li>Second Item</li>
192 <li>Third Item</li>
193 <li>Fourth Item</li>
194 </ul>
195 </section>
196 </section>
197 </article>
198 <article>
199 <h3>:first-child</h3>
200 <section>
201 <header><h4>CSS</h4></header>
202<pre class="sample">
203small:first-child {
204 font-weight: bold;
205 color: steelblue;
206}
207</pre>
208 <header><h4>HTML</h4></header>
209<pre>
210 <small>First Small Text</small><br>
211 <small>Second Small Text</small><br>
212 <small>Third Small Text</small>
213</pre>
214 <header><h4>HTML+CSS</h4></header>
215 <section class="sample-view">
216 <small>First Small Text</small><br>
217 <small>Second Small Text</small><br>
218 <small>Third Small Text</small>
219 </section>
220 </section>
221 </article>
222 <article>
223 <h3>:last-child</h3>
224 <section>
225 <header><h4>CSS</h4></header>
226<pre class="sample">
227small:last-child {
228 font-weight: bold;
229 color: seagreen;
230}
231</pre>
232 <header><h4>HTML</h4></header>
233<pre>
234 <small>First Small Text</small><br>
235 <small>Second Small Text</small><br>
236 <small>Third Small Text</small>
237</pre>
238 <header><h4>HTML+CSS</h4></header>
239 <section class="sample-view">
240 <small>First Small Text</small><br>
241 <small>Second Small Text</small><br>
242 <small>Third Small Text</small>
243 </section>
244 </section>
245 </article>
246 <article>
247 <h3>:has()</h3>
248 <section>
249 <header><h4>CSS</h4></header>
250<pre class="sample">
251p:has(span.child) {
252 border: 2px solid black;
253}
254</pre>
255 <header><h4>HTML</h4></header>
256<pre>
257<p>Paragraph with <span class="child">span element</span></p>
258<p>Paragraph without span element</p>
259</pre>
260 <header><h4>HTML+CSS</h4></header>
261 <section class="sample-view">
262 <p>Paragraph with <span class="child">span element</span></p>
263 <p>Paragraph without span element</p>
264 </section>
265 </section>
266 </article>
267 <article>
268 <h3>:not()</h3>
269 <section>
270 <header><h4>CSS</h4></header>
271<pre class="sample">
272q:not(.quote2) {
273 font-weight: bold;
274 color: steelblue;
275}
276</pre>
277 <header><h4>HTML</h4></header>
278<pre>
279 <q class="quote1">First Quote</q><br>
280 <q class="quote2">Second Quote</q><br>
281 <q class="quote3">Third Quote</q>
282</pre>
283 <header><h4>HTML+CSS</h4></header>
284 <section class="sample-view">
285 <q class="quote1">First Quote</q><br>
286 <q class="quote2">Second Quote</q><br>
287 <q class="quote3">Third Small Text</q>
288 </section>
289 </section>
290 </article>
291 <article>
292 <h3>:where() / :is()</h3>
293 <section>
294 <header><h4>CSS</h4></header>
295<pre class="sample">
296:where(p, .detail) span {
297 color: darkcyan;
298 text-decoration: line-through;
299}
300:is(p, .detail) span {
301 font-style: italic;
302}
303p span {
304 text-decoration: none; /* Applied */
305 font-style: normal; /* Not Applied */
306}
307</pre>
308 <header><h4>HTML</h4></header>
309<pre>
310<p class="detail">This is a <span>paragraph</span> with the "detail" class.</p>
311<p>This is a <span>paragraph</span> without the "detail" class.</p>
312</pre>
313 <header><h4>HTML+CSS</h4></header>
314 <section class="sample-view">
315 <p class="detail">This is a <span>paragraph</span> with the "detail" class.</p>
316 <p>This is a <span>paragraph</span> without the "detail" class.</p>
317 </section>
318 </section>
319 </article>
320 <article>
321 <h3>:checked</h3>
322 <section>
323 <header><h4>CSS</h4></header>
324<pre class="sample">
325input:checked {
326 outline: 4px solid red;
327}
328</pre>
329 <header><h4>HTML</h4></header>
330<pre>
331 <label><input type="checkbox">First Checkbox</label>
332 <label><input type="checkbox">Second Checkbox</label>
333</pre>
334 <header><h4>HTML+CSS</h4></header>
335 <section class="sample-view">
336 <label><input type="checkbox">First Checkbox</label>
337 <label><input type="checkbox">Second Checkbox</label>
338 </section>
339 </section>
340 </article>
341 <article>
342 <h3>:disabled</h3>
343 <section>
344 <header><h4>CSS</h4></header>
345<pre class="sample">
346button:disabled {
347 background-color: gray;
348 cursor: not-allowed;
349}
350</pre>
351 <header><h4>HTML</h4></header>
352 <pre><button type="button" disabled>Example of active</button></pre>
353 <header><h4>HTML+CSS</h4></header>
354 <section class="sample-view">
355 <button type="button" disabled>Example of active</button>
356 </section>
357 </section>
358 </article>
359 <article>
360 <h3>:visited</h3>
361 <section>
362 <header><h4>CSS</h4></header>
363<pre class="sample">
364.link:visited {
365 color: purple;
366}
367</pre>
368 <header><h4>HTML</h4></header>
369 <pre><a href="https://example.com" class="link">Example</a></pre>
370 <header><h4>HTML+CSS</h4></header>
371 <section class="sample-view">
372 <a href="https://example.com" class="link">Example</a>
373 </section>
374 </section>
375 </article>
376 <article>
377 <h3>:first-of-type</h3>
378 <section>
379 <header><h4>CSS</h4></header>
380<pre class="sample">
381.first-example :first-of-type {
382 font-weight: bold;
383 color: steelblue;
384}
385</pre>
386 <header><h4>HTML</h4></header>
387<pre>
388<p class="first-example">
389 <var>First Variable</var>, <code>First Code Snippet</code><br>
390 <var>Second Variable</var>, <code>Second Code Snippet</code><br>
391 <var>Third Variable</var>, <code>Third Code Snippet</code>
392</p>
393</pre>
394 <header><h4>HTML+CSS</h4></header>
395 <section class="sample-view">
396 <p class="first-example">
397 <var>First Variable</var>, <code>First Code Snippet</code><br>
398 <var>Second Variable</var>, <code>Second Code Snippet</code><br>
399 <var>Third Variable</var>, <code>Third Code Snippet</code>
400 </p>
401 </section>
402 </section>
403 </article>
404 <article>
405 <h3>:last-of-type</h3>
406 <section>
407 <header><h4>CSS</h4></header>
408<pre class="sample">
409.last-example :last-of-type {
410 font-weight: bold;
411 color: seagreen;
412}
413</pre>
414 <header><h4>HTML</h4></header>
415<pre>
416<p class="last-example">
417 <var>First Variable</var>, <code>First Code Snippet</code><br>
418 <var>Second Variable</var>, <code>Second Code Snippet</code><br>
419 <var>Third Variable</var>, <code>Third Code Snippet</code>
420</p>
421</pre>
422 <header><h4>HTML+CSS</h4></header>
423 <section class="sample-view">
424 <p class="last-example">
425 <var>First Variable</var>, <code>First Code Snippet</code><br>
426 <var>Second Variable</var>, <code>Second Code Snippet</code><br>
427 <var>Third Variable</var>, <code>Third Code Snippet</code>
428 </p>
429 </section>
430 </section>
431 </article>
432 <article>
433 <h3>:nth-of-type(n)</h3>
434 <section>
435 <header><h4>CSS</h4></header>
436<pre class="sample">
437.nth-example :nth-of-type(2) {
438 font-weight: bold;
439 color: lightsalmon;
440}
441</pre>
442 <header><h4>HTML</h4></header>
443<pre>
444<p class="nth-example">
445 <var>First Variable</var>, <code>First Code Snippet</code><br>
446 <var>Second Variable</var>, <code>Second Code Snippet</code><br>
447 <var>Third Variable</var>, <code>Third Code Snippet</code>
448</p>
449</pre>
450 <header><h4>HTML+CSS</h4></header>
451 <section class="sample-view">
452 <p class="nth-example">
453 <var>First Variable</var>, <code>First Code Snippet</code><br>
454 <var>Second Variable</var>, <code>Second Code Snippet</code><br>
455 <var>Third Variable</var>, <code>Third Code Snippet</code>
456 </p>
457 </section>
458 </section>
459 </article>
460
461 <header><h2>Pseudo Element</h2></header>
462 <article>
463 <h3>::before</h3>
464 <section>
465 <header><h4>CSS</h4></header>
466<pre class="sample">
467span.note::before {
468 content: "Note: ";
469 color: red;
470}
471</pre>
472 <header><h4>HTML</h4></header>
473 <pre><span class="note">Example Text</span></pre>
474 <header><h4>HTML+CSS</h4></header>
475 <section class="sample-view">
476 <span class="note">Example Text</a><br>
477 </section>
478 </section>
479 </article>
480 <article>
481 <h3>::after</h3>
482 <section>
483 <header><h4>CSS</h4></header>
484<pre class="sample">
485span.five-stars::after {
486 content: "*****";
487 color: gold;
488}
489</pre>
490 <header><h4>HTML</h4></header>
491 <pre><span class="five-stars">Example Text</span></pre>
492 <header><h4>HTML+CSS</h4></header>
493 <section class="sample-view">
494 <span class="five-stars">Example Text</a>
495 </section>
496 </section>
497 </article>
498 <article>
499 <h3>::placeholder</h3>
500 <section>
501 <header><h4>CSS</h4></header>
502<pre class="sample">
503input::placeholder {
504 color: rgba(0, 150, 150, 0.7);
505 font-size: 14px;
506 font-style: italic;
507}
508</pre>
509 <header><h4>HTML</h4></header>
510 <pre><input type="text" placeholder="Enter your name"></pre>
511 <header><h4>HTML+CSS</h4></header>
512 <section class="sample-view">
513 <input type="text" placeholder="Enter your name">
514 </section>
515 </section>
516 </article>
517 <article>
518 <h3>::first-letter</h3>
519 <section>
520 <header><h4>CSS</h4></header>
521<pre class="sample">
522p.first::first-letter {
523 font-size: 2em;
524 color: blue;
525}
526</pre>
527 <header><h4>HTML</h4></header>
528<pre>
529<p class="first">
530 <span>First Text</span><br>
531 <span>Second Text</span><br>
532 <span>Third Text</span>
533</p>
534</pre>
535 <header><h4>HTML+CSS</h4></header>
536 <section class="sample-view">
537 <p class="first">
538 <span>First Text</span><br>
539 <span>Second Text</span><br>
540 <span>Third Text</span>
541 </p>
542 </section>
543<pre class="sample-error">
544/* Not Valid: `::first-letter` can only be applied to
545 block-level elements */
546span::first-letter {
547 font-size: 2em;
548 color: red;
549}
550</pre>
551 </section>
552 </article>
553 <article>
554 <h3>::first-line</h3>
555 <section>
556 <header><h4>CSS</h4></header>
557<pre class="sample">
558p.second::first-line {
559 font-weight: bold;
560 color: green;
561}
562</pre>
563 <header><h4>HTML</h4></header>
564<pre>
565<p class="second">
566 First Text<br>
567 Second Text<br>
568 Third Text
569</p>
570</pre>
571 <header><h4>HTML+CSS</h4></header>
572 <section class="sample-view">
573 <p class="second">
574 First Text<br>
575 Second Text<br>
576 Third Text
577 </p>
578 </section>
579<pre class="sample-error">
580/* Not Valid: `::first-line` can only be applied to block-level elements */
581span::first-line {
582 font-size: 2em;
583 color: red;
584}
585</pre>
586 </section>
587 </article>
588 <article>
589 <h3>::selection</h3>
590 <section>
591 <header><h4>CSS</h4></header>
592<pre class="sample">
593span::selection {
594 background-color: yellow;
595 color: black;
596}
597</pre>
598 <header><h4>HTML</h4></header>
599<pre>
600<p>
601 <span>First Text</span><br>
602 <span>Second Text</span><br>
603 <span>Third Text</span>
604</p>
605</pre>
606 <header><h4>HTML+CSS</h4></header>
607 <section class="sample-view">
608 <p>
609 <span>First Text</span><br>
610 <span>Second Text</span><br>
611 <span>Third Text</span>
612 </p>
613 </section>
614 </section>
615 </article>
616 </main>
617</body>
618</html>
의사 클래스
CSS 의사 클래스는 요소의 상태나 계층 구조와 같은 특정 조건에 따라 스타일을 요소에 적용하는 함수입니다. 이는 요소의 상태나 위치에 따라 특별한 스타일을 추가할 수 있게 해주며, 일반 클래스나 ID로는 지정할 수 없는 동적 상황을 표현하는 데 유용합니다. 의사 클래스를 통해 특정 조건을 기반으로 동적 UI 및 스타일을 쉽게 구현할 수 있으며 사용자의 상호작용이나 콘텐츠 구조에 반응하는 디자인을 가능하게 합니다.
의사 클래스의 기본 문법
의사 클래스의 기본 구문은 다음과 같습니다.
1selector:pseudo-class {
2 /* Styles */
3}
selector
는 대상 요소입니다.pseudo-class
부분은 특정 상태나 조건을 나타내는 의사 클래스를 나타냅니다.:
는 의사 클래스 선택에 사용됩니다.
자주 사용되는 의사 클래스
:hover
1a:hover {
2 color: red;
3}
:hover
는 마우스 커서가 요소 위에 있을 때 스타일을 적용합니다.- 이 예에서는 마우스가 링크 위에 있을 때, 텍스트 색상이 빨간색으로 변경됩니다.
:focus
1input:focus {
2 outline: 2px solid blue;
3}
:focus
는 요소가 포커스를 받을 때 스타일을 적용합니다. 주로 폼 요소와 링크에 사용됩니다.- 이 예에서는
input
요소에 포커스가 맞춰질 때 파란색 윤곽선이 나타납니다.
:active
1button:active {
2 background-color: green;
3}
:active
는 요소가 활성 상태 (클릭되는 동안) 일 때 스타일을 적용합니다.- 이 예에서는 버튼이 클릭되는 동안 배경색이 녹색으로 변경됩니다.
:empty
1.box:empty {
2 background-color: lightgray;
3 border: 1px dashed black;
4 height: 50px;
5 width: 50px;
6}
:empty
의사 클래스는 자식 요소가 없는 요소에 스타일을 적용하는 데 사용됩니다. 대상 요소에는 텍스트 노드, 공백 또는 주석이 없어야 합니다.- 이 예제에서는
box
클래스가 있는 요소에 아무 내용도 없을 경우 회색 배경과 검정색 점선 테두리가 적용됩니다. 공백이 있으면 스타일이 적용되지 않습니다.
:valid
/ :invalid
1input:valid {
2 border: 2px solid green;
3 background-color: #eaffea;
4}
5
6input:invalid {
7 border: 2px solid red;
8 background-color: #ffeaea;
9}
-
:valid
스타일은 유효한 입력 값을 가진 폼 요소에 적용됩니다.:valid
스타일은pattern
또는type
(예:email
)과 같은 HTML 속성에서 지정된 조건이 충족될 때 적용됩니다. -
:invalid
스타일은 유효하지 않은 입력 값을 가진 폼 요소에 적용됩니다.:invalid
스타일은 폼 요소가 HTML 검증 규칙(예:type="email"
)을 충족하지 못할 때 적용됩니다. -
이 예시에서, 입력된 텍스트가
pattern
속성에 의해 지정된 대로 5자 이상이면 초록색 테두리가 표시됩니다. 입력된 텍스트가 5자 미만이면 빨간색 테두리가 표시됩니다.
:in-range
/ :out-of-range
1input[type="number"]:in-range {
2 border: 2px solid blue;
3 background-color: #eaf4ff;
4}
5
6input[type="number"]:out-of-range {
7 border: 2px solid orange;
8 background-color: #fff4e6;
9}
-
:in-range
는 숫자 입력 요소가 지정된 범위 내의 값을 가질 때 적용되는 스타일입니다.:in-range
스타일은 HTML의min
및max
속성에서 지정된 조건이 충족될 때 적용됩니다. -
:out-of-range
는 숫자 입력 요소가 지정된 범위를 벗어난 값을 가질 때 적용되는 스타일입니다.:out-of-range
스타일은 값이min
또는max
속성에 의해 지정된 범위를 초과할 때 적용됩니다. -
이 예제에서는
min="18"
및max="99"
속성(18에서 99까지 포함)으로 지정된 범위 내의 값을 입력하면 파란 테두리가 표시됩니다. 범위를 벗어난 값을 입력하면 주황색 테두리가 표시됩니다.
:nth-child()
1li:nth-child(2) {
2 color: blue;
3 font-weight: bold;
4}
:nth-child()
는 부모 내에서 자식 요소의 위치에 따라 스타일을 적용합니다.n
에 숫자나 수식을 지정할 수 있습니다.- 이 예에서는 두 번째 리스트 항목의 텍스트가 파란색이 됩니다.
홀수 및 짝수 요소에 적용
1li:nth-child(odd) {
2 background-color: lightblue;
3}
4
5li:nth-child(even) {
6 background-color: steelblue;
7}
even
또는odd
를 지정하여 홀수 또는 짝수 요소에 스타일을 적용할 수 있습니다.- 이 예제에서는 짝수 행과 홀수 행에 서로 다른 배경색이 적용됩니다. 예를 들어, 줄무늬 테이블 디자인에 사용할 수 있습니다.
:first-child
1small:first-child {
2 font-weight: bold;
3 color: steelblue;
4}
:first-child
는 부모의 첫 번째 자식 요소에 스타일을 적용합니다.- 이 예제에서는 첫 번째
small
요소의 텍스트가 짙은 파란색으로 굵게 스타일링됩니다.
:last-child
1small:last-child {
2 font-weight: bold;
3 color: seagreen;
4}
:last-child
는 부모의 마지막 자식 요소에 스타일을 적용합니다.- 이 예제에서는 마지막
small
요소의 텍스트가 짙은 녹색으로 굵게 스타일링됩니다.
:has()
1p:has(span.child) {
2 border: 2px solid black;
3}
- CSS의
:has()
의사 클래스는 부모 선택자로 작동합니다. 이 의사 클래스를 사용하여 자식 요소의 존재에 따라 부모 요소를 선택할 수 있습니다. - 이 예제에서는
border
가.child
클래스를 포함하는span
요소를 가진p
요소에 적용됩니다.
:not()
1q:not(.quote2) {
2 font-weight: bold;
3 color: steelblue;
4}
:not()
는 특정 조건을 만족하지 않는 요소에 스타일을 적용합니다.- 이 예제에서는
quote2
클래스를 가진 요소를 제외한q
요소의 텍스트가 짙은 파란색으로 굵게 스타일링됩니다.
:where()
/ :is()
1:where(p, .detail) span {
2 color: darkcyan;
3 text-decoration: line-through;
4}
5:is(p, .detail) span {
6 font-style: italic;
7}
8p span {
9 text-decoration: none; /* Applied */
10 font-style: normal; /* Not Applied */
11}
:where()
의사 클래스는 특수 CSS 선택자로, 특이성을 0으로 설정합니다. 이는 여러 선택자를 함께 처리하고 선택된 요소의 특이성에 영향을 주지 않고 스타일을 적용하고자 할 때 유용합니다.:is()
의사 클래스는 여러 선택자를 그룹화하고 조건 중 하나라도 충족하는 요소를 선택합니다.:is()
의사 클래스는 일반 선택자와 동일한 특이성을 가지지만, 내부 선택자 중 가장 높은 특이성을 기준으로 스타일을 적용합니다.- 이 예제에서는
:where()
와:is()
를 사용하여detail
클래스 내부의<p>
및<span>
요소에 스타일을 적용합니다.:where()
에 의해 설정된text-decoration
스타일은 이후의 CSS에 의해 재정의됩니다. 그러나:is()
에 의해 설정된 스타일은 더 높은 특이성을 가지며 이후의 CSS에 의해 재정의되지 않습니다.
:checked
1input:checked {
2 outline: 4px solid red;
3}
:checked
는 체크박스 또는 라디오 버튼이 선택되었을 때 스타일을 적용합니다.- 이 예제에서는 체크된 입력 요소에 빨간 테두리가 표시됩니다.
:disabled
1button:disabled {
2 background-color: gray;
3 cursor: not-allowed;
4}
:disabled
는 비활성화된 폼 요소에 스타일을 적용합니다.- 이 예제에서는 비활성화된 버튼에 회색 배경과 'not-allowed' 커서가 적용됩니다.
:visited
1.link:visited {
2 color: purple;
3}
:visited
는 방문한 링크에 스타일을 적용하는 데 사용됩니다.- 이 예제에서는 링크를 클릭하고 방문한 후
<a>
요소의 텍스트 색상이 보라색으로 변경됩니다.
개인 정보 보호 및 스타일 제한
:visited
는 개인 정보 보호 이유로 몇 가지 스타일 제한이 있습니다. 이로 인해 외부 사이트가 사용자의 방문 기록을 유추하는 것을 방지할 수 있습니다. :visited
를 사용하여 변경할 수 있는 속성은 다음과 같이 제한되어 있습니다:.
color
background-color
border-color
outline-color
column-rule-color
text-decoration-color
fill
stroke
한편, :visited
로는 display
, visibility
, position
등의 속성은 변경할 수 없습니다. 이것은 방문 기록을 통해 사용자의 프라이버시가 누출되는 것을 방지합니다.
:first-of-type
1.first-example :first-of-type {
2 font-weight: bold;
3 color: steelblue;
4}
:first-of-type
는 부모 요소 내에서 해당 유형(같은 태그 이름)의 첫 번째 요소를 선택합니다.- 이 예제에서는
first-example
클래스의 첫 번째<var>
요소와<code>
요소의 텍스트가 굵고 파란색으로 스타일링됩니다.
:last-of-type
1.last-example :last-of-type {
2 font-weight: bold;
3 color: seagreen;
4}
:last-of-type
는 부모 요소 내에서 해당 유형의 마지막 요소를 선택합니다.- 이 예제에서는
last-example
클래스의 마지막<var>
요소와<code>
요소의 텍스트가 굵고 녹색으로 스타일링됩니다.
:nth-of-type()
1.nth-example :nth-of-type(2) {
2 font-weight: bold;
3 color: lightsalmon;
4}
:nth-of-type()
는 동일한 유형의 n번째 요소에 스타일을 적용합니다.- 이 예제에서는
nth-example
클래스의 두 번째<var>
요소와<code>
요소의 텍스트가 굵고 주황색으로 스타일링됩니다.
가상 요소
CSS의 가상 요소는 선택된 요소의 특정 부분에 스타일을 적용하는 데 사용됩니다. 가상 클래스와 달리, 가상 요소는 요소 전체가 아닌 특정 부분에 초점을 맞춥니다. 예를 들어, 요소의 앞이나 뒤에 콘텐츠를 추가하거나 특정 문자나 줄에 스타일을 적용하는 데 사용됩니다.
가상 요소의 기본 문법
가상 요소는 일반적으로 선택자 뒤에 ::
(이중 콜론)으로 작성됩니다. 이는 가상 클래스와 구분하기 위한 것입니다.
1selector::pseudo-element {
2 /* Styles */
3}
selector
는 대상 요소입니다.pseudo-element
부분은 요소의 특정 부분이나 측면을 참조하는 가상 요소를 나타냅니다.::
를 사용하여 가상 요소를 지정할 수 있습니다.
자주 사용되는 가상 요소들
::before
1span.note::before {
2 content: "Note: ";
3 color: red;
4}
-
::before
는 요소의 콘텐츠 앞에 가상 콘텐츠를 삽입하고 그 부분에 스타일을 적용합니다. 예를 들어, 아이콘이나 라벨을 삽입하는 데 유용합니다. -
이 예제에서는
note
클래스를 가진<span>
요소 앞에 "Note:"라는 텍스트가 삽입됩니다. 여기에 지정된 콘텐츠는 실제 HTML에 존재하지 않으며, CSS를 통해 가상으로 추가됩니다. 이는 JavaScript 등을 통해 추가된 콘텐츠를 직접 조작할 수 없음을 의미합니다.
::after
1span.five-stars::after {
2 content: "*****";
3 color: gold;
4}
::after
는 요소의 콘텐츠 뒤에 가상 콘텐츠를 삽입합니다. 이는 일반적으로 요소 뒤에 보조적이거나 장식적인 콘텐츠를 추가하는 데 사용됩니다.- 이 예제에서는
five-stars
클래스가 있는<span>
요소 뒤에 황금색 별 아이콘이 추가됩니다.
::placeholder
1input::placeholder {
2 color: rgba(0, 150, 150, 0.7);
3 font-size: 14px;
4 font-style: italic;
5}
::placeholder
가상 요소는 폼 요소의 플레이스홀더 텍스트를 스타일링하는 데 사용됩니다. 기본적으로 플레이스홀더 텍스트는 보통 연한 회색으로 표시되지만,::placeholder
가상 요소를 사용하여 디자인에 맞게 스타일을 변경할 수 있습니다.- 이 예제에서는
input
요소의 플레이스홀더 텍스트 색상은 70% 투명한 파란색으로, 글꼴 크기는14px
, 글꼴은 이탤릭체로 설정됩니다.
::first-letter
1p.first::first-letter {
2 font-size: 2em;
3 color: blue;
4}
::first-letter
는 블록 수준 요소의 첫 글자에 스타일을 적용합니다. 이는 잡지나 신문에서 볼 수 있는 것과 같은 타이포그래픽 효과를 위해 사용되며, 첫 글자를 강조합니다. 이 가상 요소는 블록 수준 요소에만 효과적이며<span>
과 같은 인라인 요소에 직접 적용할 수 없습니다.- 이 예제에서는 단락의 첫 글자가 두 배 크기, 굵게, 파란색으로 스타일링됩니다.
::first-line
1p.second::first-line {
2 font-weight: bold;
3 color: green;
4}
::first-line
은 블록 요소의 첫 번째 줄에 스타일을 적용합니다. 이는 특히 텍스트 단락에서 사용되며, 첫 번째 줄에 다른 스타일을 적용할 수 있습니다.- 이 예제에서는 단락의 첫 번째 줄이 굵고 녹색으로 스타일링됩니다.
::selection
1span::selection {
2 background-color: yellow;
3 color: black;
4}
::selection
은 사용자가 선택(하이라이트)한 텍스트 부분에 스타일을 적용합니다. 이를 사용하면 텍스트가 선택될 때 배경색과 텍스트 색상을 변경할 수 있습니다.- 이 예제에서는
<span>
요소의 텍스트가 선택되었을 때 배경이 노란색으로, 텍스트는 검은색으로 변경됩니다.
위의 기사를 보면서 Visual Studio Code를 사용해 우리 유튜브 채널에서 함께 따라할 수 있습니다. 유튜브 채널도 확인해 주세요.