<tr class="dotted">
<td><strong>Profile Information</strong></td>
</tr>
how to write the "dotted" class in css to achieve that effect?
<tr class="dotted">
<td><strong>Profile Information</strong></td>
</tr>
how to write the "dotted" class in css to achieve that effect?
could do
tr.dotted td
{
border-bottom: dotted 1px black;
}
but you'd have to have cellspacing="0" or border-collapse:collapse; set so there are no breaks in the line.
Add class to td instead of tr. It wont work with TR.
<tr>
<td class="dotted"><strong>Profile Information</strong></td>
</tr>