moonbiter

msg:1194537 | 4:29 pm on Aug 9, 2002 (gmt 0) |
Why would you want to do this without a border? Just put a css border (right or left) on the appropriate table cell and apply padding to both to give some space.
|
papabaer

msg:1194538 | 4:32 pm on Aug 9, 2002 (gmt 0) |
There is no vertical equivalent to <hr> - you can create a <div> to serve the purpose but this is a definite kludge. Why not use the border property? [w3.org...]
|
ideavirus

msg:1194539 | 4:33 pm on Aug 9, 2002 (gmt 0) |
Could you pls help me with the css left/right code for the border ?? I hope by using this border, i won't get a border for the entire table ?? Thanks again :)
|
papabaer

msg:1194540 | 4:41 pm on Aug 9, 2002 (gmt 0) |
Very simple: [w3.org...] [w3.org...]
|
ideavirus

msg:1194541 | 4:56 pm on Aug 9, 2002 (gmt 0) |
papabaer : thanks a lot for the links..I am checking them out ! Cheers :)
|
Nick_W

msg:1194542 | 5:00 pm on Aug 9, 2002 (gmt 0) |
<table> <tr> <td class="rightborder">Blah blah</td> <td class="leftborder">blah de blah</td> </tr> </table>
and in your CSS...
.rightborder { border-right: 1px solid #000000; ] .leftborder { border-left: 1px solid #000000; border-style: dashed; }
The last one just makes sure that IE5 will actually show the border as it doesn't support the dashed property. Nick
|
|