January 15, 2010 - Posted by CSS Master- 0 Comments
CSS can be a powerful tool when styling links on your web page.
You can change the look of the link itself using traditional CSS Font Styling and CSS Styling Text, but links also have extra behaviours that can be styled.
A link is an anchor, the HTML for an anchor tag is , so [...]
January 15, 2010 - Posted by CSS Master- 2 Comments
CSS Font styling is similar to CSS text styling, except the font styles change how the fonts themselves are displayed.
Let’s begin with the font itself.
p { font-family:”Times New Roman”, Times, serif; }
This gives 3 fonts to choose from, or in this case, 3 ‘families’ of fonts. The first is a specific font, the second [...]
January 15, 2010 - Posted by CSS Master- 2 Comments
Nine out of ten times the most important aspect of your website is the content, which is often text. You want to make sure that the text you display reads well and makes sense, but more than that, you want to make sure that the text is styled and looking good.
Using CSS text styling [...]