johnmerlino
06-23-2010, 07:33 PM
Hey all,
As soon as I added this line of code:
colgroup col:first-child {
border-right: 1px solid red;
}
The bottom border disappeared. Anyone know why?
<style>
table {
color: #fff;
background-color: #202120;
border-collapse: collapse;
}
colgroup col:first-child {
border-right: 1px solid red;
}
tbody:first-child {
border-bottom: 1px solid red;
}
td[colspan] {
text-align: center;
}
</style>
<table>
<colgroup span="2">
<col span="1">
<col span="1">
</colgroup>
<tbody>
<tr>
<td>Email a support question.</td>
<td>Chat with a Support Personnel</td>
</tr>
<tr>
<td>Call Me Now</td>
<td>User Manual</td>
</tr>
</tbody>
<tbody>
<tr>
<td colspan="2">FAQ</td>
<td> </td>
</tr>
</tbody>
</table>
thanks for response
As soon as I added this line of code:
colgroup col:first-child {
border-right: 1px solid red;
}
The bottom border disappeared. Anyone know why?
<style>
table {
color: #fff;
background-color: #202120;
border-collapse: collapse;
}
colgroup col:first-child {
border-right: 1px solid red;
}
tbody:first-child {
border-bottom: 1px solid red;
}
td[colspan] {
text-align: center;
}
</style>
<table>
<colgroup span="2">
<col span="1">
<col span="1">
</colgroup>
<tbody>
<tr>
<td>Email a support question.</td>
<td>Chat with a Support Personnel</td>
</tr>
<tr>
<td>Call Me Now</td>
<td>User Manual</td>
</tr>
</tbody>
<tbody>
<tr>
<td colspan="2">FAQ</td>
<td> </td>
</tr>
</tbody>
</table>
thanks for response