ul {list-style-type:circle;}
ul {list-style-type:square;}
ol {list-style-type:upper-roman;}
ol {list-style-type:lower-alpha;}
ul {list-style-image:url('square.gif'); }
※ upper: 대문자, lower: 소문자
※ 각 브라우저별로 다르게 표시되는 것을 아래와 같은 방법으로 같게 만들어 준다 (crossbroser solution)
<style>
ul {
list-style-type:none;
padding:0px;
margin:0px;
}
ul li {
background-image:url('square.gif');
background-repeat:no-repeat;
background-position:opx 5px;
padding-left:14px;
}
</style>
'CSS3 강의 > 웹학교' 카테고리의 다른 글
CSS 11.Box Model (0) | 2014.09.02 |
---|---|
CSS 10.Tables (css로 표를 꾸미는 방법) (0) | 2014.09.02 |
CSS 8. Links ( link, visited, hover, active) (0) | 2014.09.02 |
CSS 7. Fonts (폰트의 종류 및 크기 등을 지정하는 방법) (0) | 2014.09.02 |
CSS 6. Text (css로 text를 꾸미는 방법) (0) | 2014.08.31 |