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.
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.
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>