OZONE Asylum
Forums
XML - XSL - XSLT - XHTML - CSS - DOM
Font in netscape
This page's ID:
10632
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
I agree with Emperor. At first, CSS may seem a bit strange, but if you just spend a while with it, you will probably really start to like it. Consider the following... Let's say you only use P elements for the main article copy on a news page. Would you rather include the following line one time to specify the font for all of your paragraphs... P { font-family: Verdana, sans-serif; font-size: 11px; background-color: none; color: #000 } ...or use FONT tags over and over and over and over? Not flexible enough for you? How about the following then? You could just include the following line one time... .WhateverYouWant { font-family: Verdana, sans-serif; font-size: 11px; background-color: none; color: #000 } ... then specify the class <P CLASS="WhateverYouWant">like this</P>, <SPAN CLASS="WhateverYouWant">like this</SPAN>, <DIV CLASS="WhateverYouWant">or even like this</DIV>. The beauty of this is that if you want to change the font, size, color, etc., you only have to change it one time then it is applied to every element to which your class has been assigned. If you are using an external style sheet file, that can even be your whole web site. :)
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »