This content originally appeared on DEV Community and was authored by Suma
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; }
This content originally appeared on DEV Community and was authored by Suma
Suma | Sciencx (2025-11-07T06:39:13+00:00) CSS STYLES. Retrieved from https://www.scien.cx/2025/11/07/css-styles/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.