Css
Css
WIDTH/HEIGHT
auto - This is default. The browser calculates the height and width
length - Defines the height/width in px, cm, etc.
% - Defines the height/width in percent of the containing block
initial - Sets the height/width to its default value
inherit - The height/width will be inherited from its parent value
PADDING
MARGIN
BORDER
border-style
CORLOR
POSITION
static
relative
fixed
absolute
sticky
TRANSITION
transition
transition-delay
transition-duration
transition-property
transition-timing-function
@keyframes example {
from {background-color: red;}
to {background-color: yellow;}
}