Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 253 Bytes

09-css-box model.md

File metadata and controls

20 lines (15 loc) · 253 Bytes

Box model

margin>border>padding>content

Most Used Units

units: px, %(of the parent), em(size of parent font), rem(root em),

Quick Examples

.box{
    height:
    width:
    padding:
    margin:
    border:
    background-color
}