개발/웹개발
CSS (list style)
배타브
2023. 4. 4. 09:52
728x90
반응형
<!-- 목록 스타일 -->
<!-- 순서없는 목록 : disc(기본) , circle(빈원) , square(네모) , none(없음)-->
<!-- 순서있는 목록 : decimal(기본) , lower , upper 알파벳 등등 -->
.a {
list-style-type: disc;
}
.b {
list-style-type: circle;
}
.c {
list-style-type: square;
}
.d {
list-style-type: none;
}
.a {
list-style-type: disc;
}
.b {
list-style-type: circle;
}
.c {
list-style-type: square;
}
.d {
list-style-type: none;
}
728x90
반응형