Code Snippet for Web Dev.


CSS

The following code is a simple template for a CSS stylesheet.


/* global style */
BODY
{
overflow:hidden;
font-family:verdana;
margin:0;
padding:0;
}

/* class definition. Will apply to elements like */
a.selected, a.selected:visited
{
text-decoration:none;
color:#555555;
}

/* Object definiton. Will apply to elements like

*/
#header_section
{
position:absolute;
width:100%;
height:100px;
top:0px;
margin-left:13%;
}

Leave a Reply

Your email address will not be published. Required fields are marked *