如何将该按钮置于中央?

时间:2018-10-06 14:10:24

标签: php html css wordpress alignment

如何放置此按钮

img

this page的中心吗?

4 个答案:

答案 0 :(得分:0)

您可以使用display: table; margin: 0 auto;
position: absolute; left: 50%; transform: translateX(-50%);
在按钮的div(thim-sc-button home-6-top mt-button-home hide-separator)上
有关更多信息:https://www.w3schools.com/css/css_align.asp

答案 1 :(得分:0)

将此CSS样式赋予包含按钮的div元素

.container {
  display: flex;
  justify-content: center;
}

我在您的网站上尝试过,如下所示:

enter image description here

答案 2 :(得分:0)

css中的此规则负责:

.thim-sc-button.home-6-top {
   text-align:left; 
   display:inline-block; 
   margin-right:18px;
}

您可以从home-6-top元素中删除button类以使其居中,也可以仅删除text-aligndisplay属性以保持边距。

答案 3 :(得分:-2)

Tol, 欢迎使用Stackoverflow。

您可以尝试一下 enter image description here