develog

[css] top, right, bottom, left 본문

카테고리 없음

[css] top, right, bottom, left

냐옴 2021. 4. 24. 14:39
div {
    /* top, right, bottom, left */
    padding: 10px 5px 15px 20px;

    /* (top) (right, left) (bottom) */
    padding: 10px 5px 15px;

    /* (top, bottom) (right, left) */
    padding: 10px 5px;

    /* (all sides: top, bottom, left, right) */
    padding: 10px;
}
Comments