/ Published in: CSS
                    
                                        
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.
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
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: ;
}
URL: http://kevh.net
Comments
 Subscribe to comments
                    Subscribe to comments
                
                