如何水平对齐快速查看按钮?
我在下面尝试了css,但它不起作用。请指教。谢谢你。
.woosq-btn {
display: flex;
justify-content: center;
}
我正在使用 WPC Smart Quick View 插件。链接https://wordpress.org/plugins/woo-smart-quick-view/
更新 - 2021 年 5 月 3 日
使用@Ali Klein 提供的CSS 后,又引发了另一个问题。所有产品均水平显示。
我通过添加来修复它flex-wrap: wrap;
ul.products {
display: flex;
flex-wrap: wrap;
}
li.product {
display: flex;
flex-direction: column;
}
li.product > a {
flex: 1;
}
最终结果: