quote:
Originally posted by king_of_cool_kids
To my understanding, it should be:
code:
.double{bordercolor=black} in the css doc
and
class="double" in the table to call it
but it doesn't work for some reason. Any ideas why??
It should be .double{
border-color:black}
quote:
Originally posted by king_of_cool_kids
code:
/* style for background */
BODY {
scrollbar-face-color: #000088;
scrollbar-shadow-color: #0000cc;
scrollbar-highlight-color: #0000ee;
scrollbar-3dlight-color: #0000ff;
scrollbar-track-color: #6699ff;
scrollbar-arrow-color: #000000;}
}
/* style to color links */
A {
text-decoration : none;
color : yellow;
font-family : verdana, arial, helvetica, sans-serif;
font-size : 11px;
font-weight : bold;
}
but they dont. Any ideas??
Scroll bar styles are
not defined in CSS2/2.1/3. It is IE itself which supports the school bar coloring on its own. Mozilla, indeed, does not support it.
As for the A tag, It's always better to define
A:link, A:visited, A:hover{
blahblahblah
}
(Some say that A:active and A:focus are also needed, but I don't think they make differences
)