CSS, How to Use Header Styles

August 11th, 2009

Header styles also can be used to style the <p> element. The CSS rules can be placed in the head of the document using the style element. Like inline styles, header styles, header styles should be avoided where possible because the styles are added to the HTML markup rather than in external CSS files Read More...

CSS, How to use type, class and id selectors

August 4th, 2009

Selectors are one of the most important aspects of CSS because they are used to "select" elements on an HTML page so the can be styled. Sample HTML <body> <div id="content"> <h1> Heading Here </h1> <p> Lorem ipsum dolor sit amet. </p> <p>Lorem ipsum dolor <a href="#">sit</a> amet Read More...