Flexbox无法集中Woocommerce Button

时间:2018-06-08 18:33:35

标签: html css wordpress woocommerce

我正试图在我的woocommerce网站中按一个按钮,但没有成功。

继承人我已经尝试过的事情:

margin: auto;
float: none;
display: block;

display: flex;
align-items: center;
justify-content: center;

image

我没有使用flexbox工作,但没有响应,我需要学习更多的flexbox。

这是使用flexbox的结果:

image2

有人可以帮忙吗?如果需要,这是网站:http://svidro.recifeimage.com/

2 个答案:

答案 0 :(得分:4)

- 您应该有一个<div>并且在其中<button> - <div>应该有这种风格

  display: flex;
  justify-content: center;

- 这是因为标签的内容有

justify-content: center;

只会以内容为中心 - 在这种情况下,您将<div>,其内容为<button>

答案 1 :(得分:1)

你可以尝试使用相对定位结合CSS变换而不是flexbox来使按钮居中:

position: relative;
/* moves button to the middle of its container */
left: 50%;
/* moves button 50% of its width to the left */
transform: translateX(-50%);