Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/41.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
Css 引导列在另一列之间留出空间_Css_Twitter Bootstrap 3 - Fatal编程技术网

Css 引导列在另一列之间留出空间

Css 引导列在另一列之间留出空间,css,twitter-bootstrap-3,Css,Twitter Bootstrap 3,在这里您可以看到,在两个col-md-6 div之间,有一点空白。我需要把它去掉,这样灰条看起来就像是一个 <div class="row"> <div class="col-md-12 performers-table" style="padding:0 !important;"> <div class="col-md-6" style="padding:0 !important;">

在这里您可以看到,在两个col-md-6 div之间,有一点空白。我需要把它去掉,这样灰条看起来就像是一个

     <div class="row">
        <div class="col-md-12 performers-table" style="padding:0 !important;">
            <div class="col-md-6" style="padding:0 !important;">
                <table class="table table-striped">
                    <tr>
                        <th>Rating - Top 3 <i class="fa fa-thumbs-up"></i></th>
                        <th></th>
                    </tr>
                    <tr>
                        <td>
                            <i class="fa fa-eye"></i>{{$performers['over'][0]['name'] }}
                        </td>
                        <td>
                            {{$performers['over'][0]['review_count_approved'] }}<div class="average-review-stars smaller-stars" id="performersover{{ $performers['over'][0]['id'] }}"></div>
                        </td>
                    </tr>
                </table>
            </div>
            <div class="col-md-6" style="padding:0 !important;">
                <table class="table table-striped">
                    <tr>
                        <th>Rating - Top 3 <i class="fa fa-thumbs-up"></i></th>
                        <th></th>
                    </tr>
                    <tr>
                        <td>
                            <i class="fa fa-eye"></i>{{$performers['over'][0]['name'] }}
                        </td>
                        <td>
                            {{$performers['over'][0]['review_count_approved'] }}<div class="average-review-stars smaller-stars" id="performersover{{ $performers['over'][0]['id'] }}"></div>
                        </td>
                    </tr>
                </table>
            </div>
        </div>
    </div>

评级-前3名
{{$performers['over'][0]['name']}
{{$performers['over'][0]['review_count_approved']}
评级-前3名
{{$performers['over'][0]['name']}
{{$performers['over'][0]['review_count_approved']}

有人知道为什么会这样吗?我已经删除了div中的任何填充内容

您可以使用。无边沟引导类以避免两列之间出现空格


默认情况下,引导行将包含15px左右边距。

u可以尝试:table{border collapse:collapse;}发布一段代码。我看不出你在这里得到了什么:它不是在JSFIDLE或bootply上发生的。好了,如果它不是在FIDLE中发生的,那么它就是你添加的其他css的问题