I'm wondering if anyone could explain to get cell borders to appear if the table's border is set to 0. Here is an example of what I would like to achieve: http://www.larrykaimer.com/...aspx?listingid=17563 , notice the three tabs (detailed view, photo gallery, view rooms)... the thin black border. If you could show me some example code, I'm sure that I can figure it out, HTML or CSS versions.
May 16, 2003, 1:54 AM
User (235 posts)
May 16, 2003, 1:54 AM
Post #2 of 4
Views: 4453
I figure its done with advanced css.
background-color: #ebebeb;
text-align:center;
border-left: #ffffff 2px outset;
border-bottom:#000000 1px outset;
border-right: #000000 1px outset;
border-top: #ffffff 2px outset;
}
or something like that code.
chmod
Code:
.SubTitleCell { background-color: #ebebeb;
text-align:center;
border-left: #ffffff 2px outset;
border-bottom:#000000 1px outset;
border-right: #000000 1px outset;
border-top: #ffffff 2px outset;
}
or something like that code.
chmod