Information About CSS Font Styles

July 29th, 2010

The CSS font is the most important feature of a page. There rare many fonts and some are available for free. Additionally CSS provides a system of fall back in case of any problematic situations. You can choose the fonts according to your requirements. There are different generic fonts Serif, Mono -space, fantasy and cursive Read More...

CSS, How to Style with Margins

December 16th, 2009

When designing a CSS based website it is very useful to understand Margins. I have found that it is much easier to deal with browser compatibility when  one uses proper margin styles. Trying to set a top: -10px seems to cause browser issues that can be easily avoided by using margin-top:-10px. Margins can be applied to the outside of any block level or inline element Read More...

CSS, How to Apply Inline Styles.

August 10th, 2009

CSS, Inline styles can be applied directly to elements in the HTML code using the style attribute. However, inline styles should be avoided wherever possible because the styles are added to the HTML markup. This defeats the main purpose of CSS, which is to apply the same styles to as many pages as possible across your website using external style sheets Read More...