문서의 선택한 두 판 사이의 차이를 보여줍니다.
다음 판 | 이전 판 | ||
wiki:css:css_note:css_counters [2021/04/05 13:36] emblim98 만듦 |
wiki:css:css_note:css_counters [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 23: | 줄 23: | ||
다음 예제는 페이지 (바디 셀렉터에서)에 대한 카운터를 만든 다음, 각 %%< | 다음 예제는 페이지 (바디 셀렉터에서)에 대한 카운터를 만든 다음, 각 %%< | ||
각 <h2> 요소의 시작 부분에 " | 각 <h2> 요소의 시작 부분에 " | ||
+ | <code css> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | body { | ||
+ | counter-reset: | ||
+ | } | ||
+ | h2::before { | ||
+ | counter-increment: | ||
+ | content: " | ||
+ | } | ||
+ | </ | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | =====Nesting Counters===== | ||
+ | 다음 예제에서는 페이지 (섹션)에 대해 하나의 카운터와 각 <h1> 요소 (하위 섹션)에 대해 하나의 카운터를 만듭니다.\\ | ||
+ | " | ||
+ | " | ||
+ | <code css> | ||
+ | < | ||
+ | body { | ||
+ | counter-reset: | ||
+ | } | ||
+ | h1 { | ||
+ | counter-reset: | ||
+ | } | ||
+ | h1::before { | ||
+ | counter-increment: | ||
+ | content: " | ||
+ | } | ||
+ | h2::before { | ||
+ | counter-increment: | ||
+ | content: counter(section) " | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | 카운터의 새 인스턴스가 자식 요소에서 자동으로 생성되기 때문에, 카운터는 __개요목록__(outlines lists)을 만드는 데 유용할 수 있습니다.\\ | ||
+ | 여기서 우리는 '' | ||
+ | <code css> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | ol { | ||
+ | counter-reset: | ||
+ | list-style-type: | ||
+ | } | ||
+ | li::before { | ||
+ | counter-increment: | ||
+ | content: counters(section, | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | ===Result=== | ||
+ | {{: | ||
+ | \\ | ||
+ | =====CSS Counter Properties===== | ||
+ | | Property | ||
+ | ^ content | ||
+ | | counter-increment | ||
+ | ^ counter-reset | ||
+ | \\ | ||
{{tag> | {{tag> |