Bootstrap表没有新行

时间:2014-10-15 17:33:34

标签: css css3 twitter-bootstrap twitter-bootstrap-3

<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>&euro;    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?这个网站是响应性的,但由于文本中的空格,文本分为两行。

3 个答案:

答案 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)

使用&nbsp;代替空格

答案 2 :(得分:0)

引导程序4。

如果不需要支持多个长文本,也可以应用于整个表:

<table class="table text-nowrap">

https://jsfiddle.net/439dg2k0/1/