counter-increment 속성은 선택기가 발생할 때마다 카운터 증가를 설정합니다. 기본 증분은 1입니다.
설명
이 속성을 사용하면 카운터가 특정 값(양수 또는 음수)만큼 증가(또는 감소)될 수 있습니다. 숫자 값이 제공되지 않으면 기본값은 1입니다.
참고: "display: none"을 사용하면 개수를 늘릴 수 없습니다. "visibility:hidden"을 사용하면 개수가 늘어날 수 있습니다.
값 | 설명 |
none |
기본값. 선택기에는 카운터 증가가 없습니다. |
id number |
id는 개수를 증가시킬 선택기, ID 또는 클래스를 정의합니다. 숫자는 증분을 정의합니다. 숫자는 양수, 0 또는 음수일 수 있습니다. |
inherit |
은 counter-increment 속성의 값이 상위 요소에서 상속되어야 함을 지정합니다. |
예
섹션과 하위 섹션에 번호를 매기는 방법(예: "섹션 1", "1.1", "1.2"):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <style type="text/css"> body {counter-reset:section;} h1 {counter-reset:subsection;} h1:before { counter-increment:section; content:"Section " counter(section) ". "; } h2:before { counter-increment:subsection; content:counter(section) "." counter(subsection) " "; } </style> </head> <body> <p><b>注释:</b>如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 counter-increment 属性。</p> <h1>HTML tutorials</h1> <h2>HTML Tutorial</h2> <h2>XHTML Tutorial</h2> <h2>CSS Tutorial</h2> <h1>Scripting tutorials</h1> <h2>JavaScript</h2> <h2>VBScript</h2> <h1>XML tutorials</h1> <h2>XML</h2> <h2>XSL</h2> </body> </html>
위 내용은 CSS 카운터 증가 속성을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!