The button is not centered only in the Safari browser.
Jsfddle
HTML
<div class="" style=" width: 100%; ">
<input value="Button" class="center-block" type="submit" style=""/>
</div>
CSS
.center-block {
display: block;
margin-right: auto;
margin-left: auto;
}
Above the problem, just go on a safari. In Chrome and Firefox, everything works fine.
source
share