Can someone help me figure out why my announcement is showing up in the wrong place on different browsers? Here's the code:
This is my HTML code: and this is my CSS code:
.announce {
height: 45px;
width: 100%;
position: relative;
}
.header {
position: absolute;
height: 130px;
background: blue;
width: 100%;
bottom: 0;
}
<div class="announce">
<div class="header>
<img src="img/logo.png">
</div>
</div>