I don't want to add CSS to my div element (e.g. <div style="text-align: center;">
).
I only want to add CSS code to the button element.
How can I center the button horizontally in this case?
button {
margin:0 auto;
display:block;
}
button {
margin: 0 auto;
display: block;
}
<div>
<button>Button</button>
</div>