position | Defines the positioning mode (static , relative , absolute , fixed , sticky ). |
top | Defines the vertical position of an element (top). |
bottom | Defines the vertical position of an element (bottom). |
left | Defines the horizontal position of an element (left). |
right | Defines the horizontal position of an element (right). |
z-index | Defines the stacking order of elements (foreground/background). |
display | Defines how an element is displayed (block , inline , flex , grid , etc.). |
float | Positions an element floating left or right (mostly replaced today by flex or grid ). |
clear | Controls wrapping behavior around floated elements. |
clip | Defines the visible area of an element (deprecated, replaced by clip-path ). |
height | Defines the height of an element. |
min-height | Defines the minimum height. |
max-height | Defines the maximum height. |
width | Defines the width of an element. |
min-width | Defines the minimum width. |
max-width | Defines the maximum width. |
margin | Defines the outer margins. |
margin-top | Defines the top outer margin. |
margin-right | Defines the right outer margin. |
margin-bottom | Defines the bottom outer margin. |
margin-left | Defines the left outer margin. |
padding | Defines the inner spacing. |
padding-top | Defines the top inner spacing. |
padding-right | Defines the right inner spacing. |
padding-bottom | Defines the bottom inner spacing. |
padding-left | Defines the left inner spacing. |
text-align | Defines horizontal text alignment inside an element. |
vertical-align | Defines vertical alignment of an element (mostly for inline elements and table cells). |
overflow | Defines how overflowing content is handled (visible , hidden , scroll , auto , clip ). |