View Single Post
Old 11-04-2024, 09:10 PM   #4
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,361
Karma: 20212223
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by RbnJrg View Post
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>
Turtle91 is offline   Reply With Quote