CSS:

The Structure of all css rules:

CSS image

 

<!-- the following is the select all Selector -->

*{

margin:0px;

}

 

<!-- the following will center a "container" that holds the webpage-->

#container{
width:800px;
position:relative;
left:50%;
margin-left:-400px;
min-height:300px;

}