As the title states i've tried searching but i cant get a border w/ text inside of it to center inside of a background image. As of right now it just centers but sticks to the top (if that makes sense).
.banner {
background-image: url("http://www.hdwallpapers.in/walls/early_snowfall-wide.jpg");
background-size: cover;
background-position: bottom center;
height: 400px;
width: 100%;
}
#banner-content {
border: 1px solid #FFF;
margin: auto;
text-align: center;
width: 40%;
}
<div class="banner">
<div id="banner-content">
<h1>Random misc text for the purpose of practicing</h1>
</div>
</div>
Thanks for the help in advance!