什么是将Divi Wordpress主题的滑块上的按钮向下移动的CSS?

时间:2018-10-29 19:16:29

标签: css wordpress button themes

这是我到目前为止所拥有的:

enter image description here

尽管我希望它看起来更像这样:

enter image description here

向下移动Button的CSS是什么?

1 个答案:

答案 0 :(得分:0)

如果您要更改按钮位置以使其在包含div的内容中垂直居中,请回答here,请在包含div的按钮上使用它:

    .containerDiv {
   display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    }

fiddle