I am facing a problem with a button styled using the class btn-getInfo-Ok
<button class="btn-getInfo-Ok">Hello</button>
in my style.css file
.btn-getInfo-Ok {
color:white !important;
margin: 0 auto !important;
height:50px;
bottom:0;
position:absolute;
width:50px;
left: 0;
right: 0;
}
The button displays correctly in Chrome, but on Safari, it doesn't appear until I resize the window. I observed that removing
bottom:0
from the btn-getInfo-Ok class resolves the issue for both browsers.
I have attempted $('window').resize() to rectify the issue without success