<h3>Mijn biedingen</h3>
<table class="table table-responsive">
<thead>
<tr>
<th>nummerplaat</th>
<th>Bod</th>
<th>Status</th>
<th>Datum bod</th>
<th>Aankoopdatum</th>
</tr>
</thead>
<tbody>
<tr>
<td>THOMAS</td>
<td>€ 90 000,00</td>
<td>open</td>
<td>15/10/2014</td>
<td>
Niet beschikbaar
</td>
</tr>
</tbody>
</table>
这是我的代码,结果如下:https://www.dropbox.com/s/6vkc2mpu7z4yqgq/Screenshot%202014-10-15%2019.28.09.png?dl=0
我如何在一条线上拥有TD?这个网站是响应性的,但由于文本中的空格,文本分为两行。
答案 0 :(得分:60)
如果您想让文本在同一行中使用CSS样式
white-space:nowrap;
例如:
<span class="nowrap">Your text here</span>
在CSS样式表
中 .nowrap {
white-space:nowrap;
}
引导方式
由于你已经有了bootstrap,不需要类定义,你可以使用类text-nowrap
只需在您的td中尝试此功能,或者如果无效,请尝试在文字周围添加span
并指定class
例如:
<td class="text-nowrap"> Your text </td>
或
<td> <span class="text-nowrap">Your text </span></td>
你也可以在表格标签中使用它,这样就不需要在每个元素中添加
例如:<table class="text-nowrap"> .... </table>
有关详情,请参阅对齐类
下的Bootstrap documentation检查Bootstrap 4文档here
答案 1 :(得分:1)
使用
代替空格
答案 2 :(得分:0)