Programs/Html

CSS 속기법

outliers 2012. 9. 2. 15:44

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 이름 사이에는 콤마(,)를 사용해야 함.