- counter-reset : counter 초기화
- counter-increment : counter 값 증가시키는 거
- counter() or counters() function : counter값 추가 또는 적용
ol {
counter-reset: section;
}
li {
counter-reset: subsection;
}
li::before {
counter-increment: section;
content: counter(section);
}
종류 어떤거 있는지 나중에 추가하기 https://developer.mozilla.org/en-US/docs/Web/CSS/counter-reset
'Coding > HTML+CSS' 카테고리의 다른 글
[CSS] img 사이즈 조절 시 흐려지는 현상 (0) | 2021.12.21 |
---|---|
[CSS] text에 그라데이션 먹이기 (1) | 2021.09.30 |
[CSS] IE에서 flexbox 이미지 버그 해결방법 (0) | 2021.07.07 |
[CSS] 글씨 써두고 bg에 먹인 아이콘만 보이고 싶을 때 (0) | 2021.06.24 |
[CSS] background-image를 animation처럼 변경하는 방법 (0) | 2021.06.18 |