Even though I've managed to center a div within another div, it seems to not be functioning properly in the Safari browser.
#box{
width: 100%;
height: 100%;
position: relative;
}
#inner_box {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
<div id="box">
<div id="inner_box"></div>
</div>