back
Code
CSS
HTML
Web
#div148{
height:75px;
width:150px;
background-color:green;
border:2px solid black;
margin:5px;
}
/* All margins are 5px */

#div149{
height:75px;
width:150px;
background-color:orange;
border:2px solid black;
margin:20px 5px 10px 30px;
}
/* If you set four values the order is top, right, bottom, left, so the top margin in 20px and right is 5px etc */