개발자로 가는길 :: CSS (list style)

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
반응형

'개발 > 웹개발' 카테고리의 다른 글

HTML, CSS 연습문제  (0) 2023.04.26
Javascript 기본 설명  (0) 2023.04.07
CSS 기본 ( text 관련 )  (0) 2023.04.03
HTML ( form - <select> <option> 드롭다운 목록작성)  (0) 2023.03.31
HTML 연습문제 (input 이용)  (0) 2023.03.31

댓글()