How to center button in HTML?

1. Using text alignment

<div style="text-align: center;">
<button>Centered Button</button>
</div>

2. Using margin:

button {
margin: auto;
display: block;
}

Go from files to website in seconds.

Start a free trial for 7 days — no credit card required

Get Started for Free