| | |||||
| ||||||||
| Web Design Discussion Discussion of web design techniques, advice, browser issues, software, design firms. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| New Member Join Date: Jul 2003
Posts: 2
![]() | Help making Opera compatible Hi, ive just got a small problem with my tables displaying white in Opera instead of grey - which they should, and as shows up in IE. is there any quick fix for this? www.blackmule.net Any advice appreciated. |
| |
| | #3 (permalink) | ||||
| Senior Member Join Date: Aug 2002
Posts: 1,255
![]() ![]() | Re: Help making Opera compatible
If you are, then opera doesn't support the bordercolor attribute. It's an Internet explorer specific attribute. You can get it to work with opera by using css. If you add something like this in the head section of your page: Code: <style type="text/css">
table.bordercolor {
border-style: solid;
border-color: #333333
}
</style> | ||||
| |