Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/mysql/66.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Twitter bootstrap 仅使用引导网格系统的表头_Twitter Bootstrap - Fatal编程技术网

Twitter bootstrap 仅使用引导网格系统的表头

Twitter bootstrap 仅使用引导网格系统的表头,twitter-bootstrap,Twitter Bootstrap,我只想用引导网格系统(col-md-x)绘制这个表头 我试过很多方法,但都不管用。 如果某人有一个有效的解决方案。或者,在这里使用col-md-x并不是最好的解决方案 谢谢 [更新] 我这样做了,我知道这是错误的,它不会起作用,但这是一个开始: <table> <thead> <tr class="col-md-12"> <th class="col-md-1">Produit</th>

我只想用引导网格系统(col-md-x)绘制这个表头

我试过很多方法,但都不管用。

如果某人有一个有效的解决方案。或者,在这里使用col-md-x并不是最好的解决方案

谢谢
[更新] 我这样做了,我知道这是错误的,它不会起作用,但这是一个开始:

<table>
    <thead>
    <tr class="col-md-12">
        <th class="col-md-1">Produit</th>
        <th class="col-md-1">Emballage</th>
        <th class="col-md-1">Certif Fournisseur</th>
        <th class="col-md-1">Certif Entreprise</th>
        <th class="col-md-1">Catégorie</th>
        <th class="col-md-1">Calibre</th>
        <th class="col-md-1">04/01</th>
        <th class="col-md-1">05/01</th>
        <th class="col-md-1">06/01</th>
        <th class="col-md-1">07/01</th>
    </tr>
    <tr class="col-md-12">
        <div class="col-md-6">
            <th class="col-md-6"></th>
        </div>
        <div class="col-md-1">
            <th class="col-md-4">Rsr</th>
            <th class="col-md-4">Arr</th>
            <th class="col-md-4">Dsp</th>
        </div>
        <div class="col-md-1">
            <th class="col-md-4">Rsr</th>
            <th class="col-md-4">Arr</th>
            <th class="col-md-4">Dsp</th>
        </div>
        <div class="col-md-1">
            <th class="col-md-4">Rsr</th>
            <th class="col-md-4">Arr</th>
            <th class="col-md-4">Dsp</th>
        </div>
        <div class="col-md-1">
            <th class="col-md-4">Rsr</th>
            <th class="col-md-4">Arr</th>
            <th class="col-md-4">Dsp</th>
        </div>
    </tr>
    </thead>
    <tbody>
    <tr ng-repeat="planning in vm.plannings">
        ....
    </tr>
    </tbody>
</table>

产品
筑堤
Fourniseur认证
认证企业
凯蒂戈里酒店
口径
04/01
05/01
06/01
07/01
Rsr
啊
数字信号处理器
Rsr
啊
数字信号处理器
Rsr
啊
数字信号处理器
Rsr
啊
数字信号处理器
....

检查这里:(同时,向我们展示您尽力帮助您的最佳方式)好的,我添加了我的一次尝试