I've got a bit of css that is centering my content vertically and horizontally in web browsers, but the horizontal centering disappears when viewed on a samsung tablet, and sits flush left.
here's what I've got so far:
Code:
#content {
display: block;
height: 100%;
position:absolute;
width:100%;
}
.container {
width:974px;
height:530px;
margin:0px auto;
border:0px solid #000;
position:relative;
top: 50%;
margin-top: -265px;
}