차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
tech:css_list [2016/07/12 09:26] – 바깥 편집 127.0.0.1tech:css_list [2017/02/24 13:20] (현재) V_L
줄 2: 줄 2:
 ======Css List====== ======Css List======
  
 +=====점에 색 넣기=====
 +
 +<file css>
 +ol, li {list-style:none;}
 +ol {position:relative;}
 +ol li:before { content:"•"; color:rgba(128,128,128,0.7); position:absolute; left:1em; }
 +</file>
  
 =====list style===== =====list style=====
줄 8: 줄 15:
  
  
-<code> +<code css>
 ul.circle {list-style-type:circle} ul.circle {list-style-type:circle}
 ul.square {list-style-type:square} ul.square {list-style-type:square}
 ol.upper-roman {list-style-type:upper-roman} ol.upper-roman {list-style-type:upper-roman}
 ol.lower-alpha {list-style-type:lower-alpha} ol.lower-alpha {list-style-type:lower-alpha}
- 
 </code> </code>