0

I have a button and i want to align it to the center of a page ? how to do that ?

<button type="button" style="text-align: center" class="btn btn-info">
   Discover More
</button>

I shall be very thankful.

Rehan Shah
  • 1,319
  • 9
  • 22

1 Answers1

0

Place your button into a div with centred text. Here is an example:

<div style="text-align: center;">
  <button type="button" class="btn btn-info">
   Discover More
  </button>
</div>
Srdjan
  • 574
  • 3
  • 6