Quote:
Originally Posted by RbnJrg
Give the text inside a table-cell the property "display: inline-block". You should have something like (in your xhtml file):
Code:
<tr>
<td><p class="nb">blah, blah, blah...., blah</p></td>
</tr>
where the style "nb" would be:
Code:
.nb {
display: inline-block;
}
Since I don't know how is your table, maybe you should also include inside the style "nb" the property "width: 100%".
|
Unless there is a very special styling that is only available when using a <p> you don’t need them… just include the class in your <td>
Code:
<tr>
<td class="nb">blah, blah, blah...., blah</td>
</tr>