CSS Dimensions

When creating CSS layouts it’s important to keep in mind how CSS Dimensions work.
There are 6 different dimension declarations:

height
max-height
min-height
width
max-width
min-width

Height and width state the height and width of an element. Not all elements can have specific widths or heights defined, and some will shrink depending on the size of their content. You can usually [...]