티스토리 뷰

잉고래의 티스토리

margin css order

잉고래 2017. 3. 29. 21:02

css tutorial : order of margin face

The order of the margin property of css is top, right, bottom, left. Same as clockwise. In the following css example, the margin for each direction would be 1px up, 2px right, 3px down, 4px left.

.test {
    margin1px 2px 3px 4px;
}

To set the property values separately for each face, use the margin property below for each face.

.test {
    margin-top1px;
    margin-right2px;
    margin-bottom3px;
    margin-left4px;
}

The order of css for each side applies equally to padding and border as well as margin.

'잉고래의 티스토리' 카테고리의 다른 글

css outline 속성 강좌  (0) 2017.04.04
box model의 이해  (0) 2017.04.03
CSS Height와 Width  (0) 2017.03.28
css padding 강좌  (0) 2017.03.15
css margin의 이해  (0) 2017.03.12