Return to Snippet

Revision: 1654
at November 3, 2006 01:30 by kevh


Initial Code
body{
	background: ;
	font: ;
	margin: ;
}
h1,h2,h3{
	font: ;
	margin: ;
}
h4,h5,h6{
	font: ;
	margin: ;
}
p{
	font: ;
}
strong{
	font: ;
}
span{
	font: ;
}
a,a:visited{
	font: ;
	text-decoration: ;
}
a:hover{
	font: ;
}

Initial URL
http://kevh.net

Initial Description
This is basically the top few lines of every CSS document I start with, just the basic selectors, no specific elements at this point in time.  I like to place a general styling for almost every type of tag in my document so that as I later style my HTML I can be sure that my entire document is using the same font family.  Later in the document I place more emphasis on individual styling for each element.

Initial Title
General Styling Markup

Initial Tags
css

Initial Language
CSS