font-family :
font-size :
font-style :
font-variant :
font-weight :
text-align :
text-shadow : h-shadow v-shadow blur color;
text-decoration : none, underline, overline, line-through
text-indent : 10px; // 문장의 첫 글자를 들여쓰기할 때
line-height : 1.5;
list-style-type : (순서 없는 목록)
- disc
- circle
- square
- none
list-style-type : (순서 목록)
- decimal : 1로 시작하는 십진수
- decimar-leading-zero : 01로 시작하는 십진수
- lower-roman : 소문자 로마숫자
- upper-roman : 대문자 로마숫자
- lower-greek : 소문자 그리스문자
- lower-alpha, lower-latin : 소문자 알파벳
- upper-alpha, upper-latin : 대문자 알파벳
list-style-position
.out{
list-style-type : square; /* 블릿을 사각형으로 */
list-style-position : outside; /* 블릿을 밖으로 내어쓰기 */
}
.in{
list-style-type : square; /* 블릿을 사각형으로 */
list-style-position : inside; /* 블릿을 안으로 들여쓰기 */
}
list-style-image
li{
list-style-image : url();
}
'CSS3 > CSS Tutorial' 카테고리의 다른 글
background (0) | 2014.09.17 |
---|---|
ul, li (0) | 2014.09.17 |
a (0) | 2014.09.17 |
blank (0) | 2014.09.17 |
selsector (0) | 2014.09.17 |