Here is table with email and checkbox cells. But how i can disable textwrapping?
Code is someting like:
<table> <tr> <td> <input type="checkbox" /> <td> Dmitry soloviev ([email protected]) </tr> ........... </table>
If you want to prevent the text from wrapping, you can apply white-space: nowrap; Notice in HTML code example at the top of this article, there are actually two line breaks, one before the line of text and one after, which allow the text to be on its own line (in the code).
Go to Picture Format or Shape Format and select Arrange > Wrap Text. If the window is wide enough, Word displays Wrap Text directly on the Picture Format tab. Choose the wrapping options that you want to apply. For example, In Line with Text, Top and Bottom, and Behind Text.
The fastest way is to select the cell(s) and click the Wrap Text button (Home tab > Alignment group) to toggle text wrapping off. Alternatively, press the Ctrl + 1 shortcut to open the Format Cells dialog and clear the Wrap text checkbox on the Alignment tab.
you should add some classes ...
<table class="tbl-emails">
and then
.tbl-emails td { white-space: nowrap; }
(Add to your CSS Selector).
white-space:nowrap;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With