View Full Version : "Value"


Niksterg11
08-11-2003, 04:54 PM
I have never used CSS before. In the CSS page, its says to replace the "value" code with your own attribute. What does that mean? Please reply, I am stuck on my page because of this problem. I have never used CSS before. In the CSS page, its says to replace the "value" code with your own attribute. What does that mean? Please reply, I am stuck on my page because of this problem.

Neptune
08-11-2003, 06:09 PM
Can you post your code and point out what part you don't understand in it? Do you mean for something like this?

A:link
{ text-decoration: value; color:#000000}

stargrl329
08-11-2003, 07:10 PM
to clarify: for each attribute (i.e. a link's text decoration on hover), there are several possible "values" that could fit in. the possible values, in this case, would be any combination of: none, underline, overline, blink. a value is the thing that comes after the semicolon. but it isn't actually the word value. using the example above, if you wanted all your links to be underlined on hover, you would put this in your stylesheet:

a:hover{ text-decoration:underline; }

hope that helped a little :)

Niksterg11
08-11-2003, 07:26 PM
Thanks a ton, I will try it and see if it works!

Niksterg11
08-11-2003, 07:58 PM
IT WORKED!!! Thanks a ton

stargrl329
08-11-2003, 09:46 PM
no problem :D