I also need help. I want certain borders to have the attribute bordercolor=black and I want it in css.
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??
Edit: Also, in firefox (not sure about others), some of my css doesn't work :/ My links and scrollbar are supposed to view like this code:
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??