develog

[css] list-style-type 본문

카테고리 없음

[css] list-style-type

냐옴 2021. 4. 24. 16:33
.disc                 { list-style-type: disc; }
.circle               { list-style-type: circle; }
.square               { list-style-type: square; }
.none                 { list-style-type: none; }
.decimal              { list-style-type: decimal; }
.decimal-leading-zero { list-style-type: decimal-leading-zero; }
.lower-alpha          { list-style-type: lower-alpha; }
.upper-alpha          { list-style-type: upper-alpha; }
.lower-roman          { list-style-type: lower-roman; }
.upper-roman          { list-style-type: upper-roman; }

Comments