Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

tables borders... 1

Status
Not open for further replies.

Sedai

Programmer
Mar 4, 2001
158
US
using the HTML 4.0 frame attrib inside a <table>, how can I specify more than one value? I need a table to have both a right and a bottom edge.
However, <table ... frame=&quot;rhs&quot; frame=&quot;bottom&quot;> gives me an error, of course :)

how could i do this?

thanks! Avendeval


 
i just thought that probably i could use to tables, almost identical in size that would give the same effect (one will have bottom the other lhs).

is there a neater way? Avendeval


 
Hi Avendeval.

You can set it with (unfortunatly it only works in IE):

<table style=&quot;BORDER-BOTTOM: ridge 7pt;BORDER-RIGHT: solid 3pt&quot;>

Don't set the attribute border because that sets all 4 edges again!!
As you can see you can set the width for each edge.
The different edge-styles that I know are:
- ridge
- solid
- double
- groove

Erik


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top