I am looking for a way to center a button horizontally without adding CSS directly to the div element (for example, using
<div style="text-align: center;">
).
My goal is to apply CSS code specifically to the button element.
<div>
<button>Button</button>
</div>
Is there a method to achieve horizontal center alignment for the button in this scenario?