padding, margin 동일
padding: 0px 20px 30px 10px;
top right bottom left
margin: 0px 20px;
top,bottom right,left
border
border-width: thin;
border-style: solid;
border-color: #007e7e;
==>순서는 상관 없음 border: thin solid #007e7e;
background
background-color: white;
background-image: url(image/cocktail.gif);
background-repeat: repeat-x;
==> 순서는 상관 없음 background: white url(images/cocktail.gif) repeat-x;
font
font: font-style font-variant font-weight font-size/line-height font-family
==> style, variant, weight 는 size 앞에 와야 함, font-family 이름 사이에는 콤마(,)를 사용해야 함.
'Programs > Html' 카테고리의 다른 글
CSS3 스타일 기본 속성 (0) | 2014.12.12 |
---|---|
유효성 검사, content-type (2) | 2011.12.04 |
문자 속성(Character entity) (4) | 2011.12.02 |