|
Posted by Jonathan N. Little on 05/18/06 20:31
Knut Krueger wrote:
>
>
> <img id="logoRight"
> that's what i was looking for
> I must look in my manual where is something written about the ID and
> with which tags I could use it.
Basically, in order of specificity:
ELEMENT {...} e.g., P {...} means applies to all P's on page
..className {...} means applies to all elements of class "className"
ELEMENT.className means applies to only element speified of class
"className"
#idName {...} means applies the *single* element of id "idName"
see http://www.w3.org/TR/CSS21/selector.html for more info
> They want Tahoma text, I just have to look if it is possible.
>
Yes, but you should give alternatives for folks without Tahoma on their
systems such as Linux system
font-family: Tahoma, Arial, Helvetica, Lucida, sans-serif;
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|