Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Implementing borderColorDark and borderColorLight in CSS

0 views
Skip to first unread message

Robert Gelb

unread,
Mar 11, 2001, 3:26:47 PM3/11/01
to
I am trying to implement borderColorDark and borderColorLight in CSS, but I
can't seem to get it just right. I am trying to replicate the following
HTML code:

<html>
<head><title>Untitled</title></head>

<body bgcolor="#006666">

<TABLE bgColor=#006666 border=1 borderColor=#669999 borderColorDark=#ffffff
borderColorLight=#000000 cellSpacing=1 width="100%">
<TR>
<TD align=middle>
<font color="White">Test</font>
</TD>
</TR>
</TABLE>
</body>
</html>

Can someone point toward the right path?

--
Robert Gelb
www.vbRad.com
Source, Tips, Tricks, Components

Rowland Shaw

unread,
Mar 15, 2001, 11:05:18 AM3/15/01
to
See mods...

"Robert Gelb" <robertgelb...@zdnetonebox.com> wrote...


> I am trying to implement borderColorDark and borderColorLight in CSS, but
I
> can't seem to get it just right. I am trying to replicate the following
> HTML code:

<html>
<head>
<title>Untitled</title>

<style><!--
body { background-color: #006666; }
table { background-color: #006666; border-width: 1px; border-style:
ridge; width: 100%; }
--></style>
</head>
<body>
<TABLE cellSpacing="1">
<TR>
<TD align=middle>
<span style="color: White;">Test</span>

0 new messages