-
[CSS] list-style과 list-style-type 차이점FrontEnd/HTML/CSS 2022. 6. 20. 08:32
list-style
list-style: 축약형
- list-style-image
- list-style-position
- list-style-type
list-style-type
list-style-type: list 요소의 앞에 붙는 서식 타입
/* Partial list of types */ list-style-type: disc; list-style-type: circle; list-style-type: square; list-style-type: decimal; list-style-type: georgian; list-style-type: trad-chinese-informal; list-style-type: kannada; /* <string> value */ list-style-type: '-'; /* Identifier matching an @counter-style rule */ list-style-type: custom-counter-style; /* Keyword value */ list-style-type: none; /* Global values */ list-style-type: inherit; list-style-type: initial; list-style-type: revert; list-style-type: revert-layer; list-style-type: unset;
'FrontEnd > HTML/CSS' 카테고리의 다른 글
[CSS] display: none, opacity: 0, visibility: hidden 차이점 (0) 2022.06.20 [CSS] Transition Error (0) 2022.05.27 [CSS] 글자 수가 많아지면 ...으로 표시 (0) 2022.04.27 [CSS] table의 border 여백 제거 (0) 2022.04.27 [HTML, CSS] 알게 된 개념들 (0) 2022.04.24