30
loading...
This website collects cookies to deliver better user experience
margin-top
, margin-right
, margin-bottom
, margin-left
. If it is given by itself, and you see a single value listed:margin: 5px;
margin-top
, margin-right
, margin-bottom
, and margin-left
values are all 5px. If you instead see it with two values:margin: 5px 3px;
margin-top
and margin-bottom
at 5px and margin-right
and margin-left
at 3px. If you see three values:margin: 5px 3px 2px;
margin-top
at 5px, margin-right
and margin-left
at 3px, and margin-bottom
at 2px. If you do see four values though, this is one for each and we still read in a clockwise motion:margin: 5px 3px 2px 1px;
margin-top
at 5px, margin-right
at 3px, margin-bottom
at 2px, and margin-left
at 1px).