순서 목록에서 숫자를 왼쪽 정렬하려면 CSS를 사용할 수 있습니다. 기본 스타일을 재정의하려면:
ol { counter-reset: item; margin-left: 0; padding-left: 0; } li { display: block; margin-bottom: .5em; margin-left: 2em; } li::before { display: inline-block; content: counter(item) ") "; counter-increment: item; width: 2em; margin-left: -2em; }
목록 번호 뒤의 문자를 변경하려면 li::before 규칙에서 콘텐츠 속성을 수정하세요.
li::before { ... content: counter(item) "a) "; ... }
To CSS를 사용하여 숫자를 알파벳 또는 로마자 목록으로 변환하고, counter-reset, counters() 함수 및 콘텐츠의 조합을 사용합니다. 속성:
ol { list-style-type: none; counter-reset: my-counter; } li { display: block; counter-increment: my-counter; } li::before { content: counters(my-counter, lower-alpha) ". "; ... }
로마 숫자의 경우:
li::before { content: counters(my-counter, lower-roman) ". "; ... }
이 기술은 Internet Explorer 7을 포함한 이전 브라우저에서는 작동하지 않을 수 있습니다.
위 내용은 Firefox 3(및 그 이상)에서 정렬된 목록을 어떻게 사용자 정의할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!