Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的表格对于我的页面来说太大了。我想要的是获得滚动条,但发生的是<td>环绕到下一行的单词。有没有办法可以停止换行,以便表格变大并出现滚动条?
<td>
注意我已经将我的表格包含在一个overflow-x: autodiv 中。
overflow-x: auto
您可以将 nowrap 标志添加到您的 td 标记中。可能有一个 css 版本(这将是一种更现代的方式)
例如:
<td nowrap>text text text</td>
要使用 css 执行此操作,您将使用:
white-space: nowrap;
这迫使它保持在一条线上。
例如:http: //jsbin.com/EsenUCI/1/edit ?html,css,output