如何在任何WordPress中创建5列行

时间:2019-07-19 04:33:20

标签: wordpress

我正在尝试在Wordpress中排成5列,有人帮我吗?

我尝试了1/6 + 1/6 + 1/6 + 1/6 + 1/6,但它有6列,但我需要5列

1/6 + 1/6 + 1/6 + 1/6 + 1/6

我得到6列

2 个答案:

答案 0 :(得分:0)

请连续选择自定义列,然后添加此1/5 + 1/5 + 1/5 + 1/5 + 1/5,您将获得所需的5列完全响应。

答案 1 :(得分:0)

You can try this by using bootstrap:

<div class="row">
        <div class="col-sm-2">One</div>
        <div class="col-sm-2 five-col">Two</div>
        <div class="col-sm-2 five-col">Three</div>
        <div class="col-sm-2 five-col">Four</div>
        <div class="col-sm-2 five-col">Five</div>
        <div>lorem Ipsum</div>
    </div>

And Use this css : 

.five-col{
    margin-left:4.166666667%
}