Why doesnt this work? (CSS)css Code:
a.linksub {font: bolder; text-decoration: none; color: #9999FF; line-height: 16pt; text-indent: 15px}
Printable View
Why doesnt this work? (CSS)css Code:
a.linksub {font: bolder; text-decoration: none; color: #9999FF; line-height: 16pt; text-indent: 15px}
If you use the font shorthand, you have to include all the parameters. For what you have there you need the full attr. font-weight:bolder;
Actually you don't need to include all the parameters: mostly you have to include font size and font name, other parameters are optional.
All these should be valid (although I'm not sure if inherit is a valid value, I remember seeing it sometimes but never used it myself. It should copy the font of the parent element.)Code:font : 8pt "Arial", sans-serif;
font : 100% bolder inherit;
font : 1.2pt/1.5pt bold italic "Verdana", "Arial", sans-serif;
Sorry, I should Have specified, all of it works, except the text-indent part...
text-indent probably only works on block elements and not on inline elements. Try margin-left instead.
ok, thank you...
???[resolved]???