I want to make a Banner on the bottom the page with fixed position and freeze when scrolled.
.content {
position: fixed;
margin: 0% auto;
left:0;
right:0;
bottom:0px;
z-index: 999999999;
}
<table class="content">
<tr>
<td>
<img src="logo.png">
</td>
</tr>
</table>
I use that setting and when did a test in firefox it's work perfectly but not in the Chrome, the banner position is still in the left, not center.
Someone can help me? I just want to make a banner in the bottom the page, fixed position(freeze when scrolled), margin-center. Thanks