i'm trying to do 2 columns in bootstrap with both being 100% height. On the right column is bascially going to be a div with a background-image and should be full height. I set the div and the container to 100% height but nothing happens. If i place text in the div, then i see the background image peek through. What am i doing wrong? here's part of the code:
<div class="container-responsive" id="content"><div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="v-image-1" style="background-image: url('images/target.jpg');"></div>
</div>
</div>
html, body, #content {
height:100%;
overflow-x:hidden;
}
.v-image-1 {
min-height:100%;
background-size:cover;
}
Any and all help greatly appreciated!