junebug
05-09-2003, 01:14 AM
I found one way to make vertical lines, and it involved tables. I got it to work, but I don't know exactly how to manipulate the example I foubd to fit what I want it to do.
Any suggestions on how to make a vertical line?
zangerbanger
05-09-2003, 02:09 AM
I think all you have to do is make a table with a fairly high height and really small width. For example:
<table width=1" height="100" border="1" cellpadding="0" cellspacing="0">
<tr>
<td>
</td>
</tr>
</table>
amicus
05-09-2003, 04:55 AM
<style type="text/css">
td {
border-right: #000000;
border-right-style: solid;
border-right-width: 1px;
}
</style>
hi the code above put into the head then make a table and the vertical line will show . if you don't want vertical lines on all 'td' tags then just use a class to specify which 'td' you want the vertical line on.
twix2006
04-18-2006, 03:24 PM
thanks! this was really helpful!