block
width
& height
properties are respected<h1>
& <p>
use block
as their default outer display typeinline
width
& height
will not apply<a>
, <span>
, <em>
, & <strong>
use inline
as their default outer display typeheight
and width
attributes are applied to the content boxmargin
, padding
, and border
will be added to the content box to give you the actual size of the box.box {
width: 350px;
height: 150px;
margin: 10px;
padding: 25px;
border: 5px solid black;
}
height
and width
attributes will be applied to the whole boxbox-sizing: border-box;