CSS STYLES

BOX MODEL CSS

margin : space outside element
div {margin : 20px;}

padding : space inside element
div {padding: 10px;}

border : line around element
p { border : 2px solid black;}

border-radius : rounded corners
button { border-radius: 10px;}

width/height : size of element
div {width: 200px; height:100px;}

max-width/min-width : size limits
div { max-width: 500px;}

box-shadow : adds shadow
div {box-shadow: 5px 5px 10px gray;}

overflow : what happens when content is too big
div { overflow: auto; }

Leave a Reply