Posted by J.O. Aho on 01/13/08 17:41
Bernd Meier wrote:
> I defined table.propertiesfortables {color:green;
> background-color:#FFFF00; border="5" solid blue} as CSS.
> I start my table with the tag: <table class=propertiesfortables>
>
> Font is green and background yellow but I didn't get border lines.
table.propertiesfortables {
color:green;
background-color:#FFFF00;
border: 5px solid blue;
}
As you see you don't use any '=' in CSS, you use the ':' instead.
--
//Aho
[Back to original message]
|