我有一个使用bootstrap样式表的表,并且无法使make cell正确包装以发送Chrome文本。无论如何,它在IE和Firefox上都很完美。你可以在这里看到它:
<form action="todos" method="post">
<table class="table" border="1"> // Normal table using bootstrap stylesheet
<thead>
<tr>
<th>asdf</th>
<th>asdf<th>
...
</tr>
</thead>
<tbody>
<tr>
...
</tbody>
知道我做错了什么吗?
答案 0 :(得分:1)
看起来像使用自动换行:break-word;尝试设置:
table td {
word-wrap: normal;
}