Hey
I am trying to add the border strictly on the table row
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<th>First name</th>
<th>Last name</th>
<th>E-mail</th>
<th>Company</th>
<th>Business e-mail</th>
<th cols="2">Website</th>
</tr>
<tr class="EvenRow">
<td>Lorem</td>
<td>Ipsum</td> <td>uksales@bwspea</td>
<td>Phasellus lorem</td <td>Vivamus molestie.com</td> </tr>
<tr id="SelectedRow">
<td>Lorem</td>
<td>Ipsum</td>
<td>uksales@bwspea</td>
<td>Phasellus lorem</td>
<td>Vivamus molestie.com</td>
</tr>
<tr class="EvenRow">
<td>Lorem</td>
<td>Ipsum</td>
<td>uksales@bwspea</td>
<td>Phasellus lorem</td>
<td>Vivamus molestie.com</td>
</tr>
</table>
is this possible I tried tr td - yes that works, but I dont want the border on all the td.
table{
float:left;
width:746px;
font-size:100%;
}
table th{
background-color:#666666;
color:#ffffff;
height:24px;
text-align:left;
text-indent:12px;
border-right:1px solid #ffffff;
width:158px;
}
table td{
padding-left:12px;
border-right:1px solid #ffffff;
}
.EvenRow td{
background-color:#eaeaea;
}
#SelectedRow td{
border-top:1px solid #000000;
border-bottom:1px solid #000000;
border-right:none;
}
#SelectedRow {
border-left:1px solid #000000;
}
I am trying to add the border strictly on the table row
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<th>First name</th>
<th>Last name</th>
<th>E-mail</th>
<th>Company</th>
<th>Business e-mail</th>
<th cols="2">Website</th>
</tr>
<tr class="EvenRow">
<td>Lorem</td>
<td>Ipsum</td> <td>uksales@bwspea</td>
<td>Phasellus lorem</td <td>Vivamus molestie.com</td> </tr>
<tr id="SelectedRow">
<td>Lorem</td>
<td>Ipsum</td>
<td>uksales@bwspea</td>
<td>Phasellus lorem</td>
<td>Vivamus molestie.com</td>
</tr>
<tr class="EvenRow">
<td>Lorem</td>
<td>Ipsum</td>
<td>uksales@bwspea</td>
<td>Phasellus lorem</td>
<td>Vivamus molestie.com</td>
</tr>
</table>
is this possible I tried tr td - yes that works, but I dont want the border on all the td.
table{
float:left;
width:746px;
font-size:100%;
}
table th{
background-color:#666666;
color:#ffffff;
height:24px;
text-align:left;
text-indent:12px;
border-right:1px solid #ffffff;
width:158px;
}
table td{
padding-left:12px;
border-right:1px solid #ffffff;
}
.EvenRow td{
background-color:#eaeaea;
}
#SelectedRow td{
border-top:1px solid #000000;
border-bottom:1px solid #000000;
border-right:none;
}
#SelectedRow {
border-left:1px solid #000000;
}