In the form below, I have a button that is currently aligned to the left:
<form>
<div class="form-group">
<button type="submit" id="getmyestimate" disabled class="standard"gt;
Get My Estimate
</button>
</div>
</form>
Here is the stylesheet for the button:
button.standard {
/*position: absolute;*/
height: 40px;
border: none;
color: #fff;
background: #4d9b84;
padding: 0 22px;
cursor: pointer;
border-radius: 30px;
top: 5px;
right: 5px;
font-size: 13px;
font-weight: 500;
}
I would like to center this button on the page using Bootstrap syntax. How can I achieve this?