Here is table with email and checkbox cells. But how i can disable textwrapping?
Code is someting like:
相关标签: 4条回答 隐瞒了意图╮ 2021-01-07 17:09 You could also check the property overflow-x: http://www.w3schools.com/cssref/css3_pr_overflow-x.asp 0 讨论(0) 发布评论: 提交评论 加载中... 攒了一身酷 2021-01-07 17:11 (Add to your CSS Selector). white-space:nowrap; 0 讨论(0) 发布评论: 提交评论 加载中... 你的背包 2021-01-07 17:15 The white-space attribute allows you to prevent text from wrapping until you place a break into your text. p { white-space: nowrap; } 0 讨论(0) 发布评论: 提交评论 加载中... 名媛妹妹 2021-01-07 17:16 you should add some classes ... <table class="tbl-emails"> and then .tbl-emails td { white-space: nowrap; } 0 讨论(0) 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
You could also check the property overflow-x: http://www.w3schools.com/cssref/css3_pr_overflow-x.asp
(Add to your CSS Selector).
white-space:nowrap;
The white-space attribute allows you to prevent text from wrapping until you place a break into your text.
p { white-space: nowrap; }
you should add some classes ...
<table class="tbl-emails">
and then
.tbl-emails td { white-space: nowrap; }