哪一个在bootstrap偏移或空div中更好?

时间:2018-02-09 15:43:22

标签: css bootstrap-4

<div class="col-xs-3"></div>
<div class="col-xs-6 col-sm-6 col-md-6" style="min-width: 320px;">
</div>

OR


<div class="col-xs-6 col-md-offset-3 col-sm-offset-3 " style="min-width: 320px;">`
</div>

当宽度小于或等于768px

时,我不想要偏移

2 个答案:

答案 0 :(得分:0)

这是更好的

/**
 * Pass array or string of key column names to remove
 */
Collection::macro('removeCols', function ($except) {
    if (!is_array($except)) $except = (array)$except;

    // Single Dimensional arrays
    if (!is_array($this->first()) && !is_object($this->first())) return $this->except($except);

    // Multi Dimensional arrays
    $out = $this->map(function ($item) use ($except) {
        $item = collect($item);
        return $item->except($except)->toArray();
    });

    return collect($out);
});

使用此偏移工作仅宽度&gt; 768px

再见

答案 1 :(得分:0)

如果你问是否应该使用空div来帮助布局页面,那么不。如果可以使用css轻松完成相同的工作,则应避免使用无意义的标记。