I have the following button inside a form:-
<form>
<div class="form-group">
<button type="submit" id="getmyestimate" disabled class="standard">
Get My Estimate
</button>
</div>
</form>
and the following style sheet:-
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;
}
currently the button will be align to the left as follow:-
so how i can position it to the center of the page using bootstrap syntax?