#header {
border: 2px solid blue;
background: orange;
}
#links {
border: 2px solid blue;
background: orange;
}
#content {
border: 2px solid blue;
background: orange;
}
width: 200px;
. Give a specific width to the links div.
float: right;
. (For this to work you must have a set width for links, not content, and links must go
before content in HTML.)
padding: 20px;
and margin
margin: 20px;
. Use
diagram to help explain. Mention specifying left, right, top, bottom. Mention using margin
margin: auto;
to center.