请问如何将wordpress短代码按钮移动到页面中央?
how to move wordpress short code button to the center of the page, please?
这是短代码的样子
[条纹名称="My Store" 描述="My Product" 金额="1999" 账单="true" 运费="true"]
enter image description here
您可以使用 div 标签:
<div id="button>"[stripe name="My Store" description="My Product" amount="1999" billing="true" shipping="true"]</div>
<style>
#button {
text-align: center;
margin: auto;
}
</style>
这是短代码的样子
[条纹名称="My Store" 描述="My Product" 金额="1999" 账单="true" 运费="true"]
enter image description here
您可以使用 div 标签:
<div id="button>"[stripe name="My Store" description="My Product" amount="1999" billing="true" shipping="true"]</div>
<style>
#button {
text-align: center;
margin: auto;
}
</style>