I have a Bootstrap page that looks like this:
<nav> ... </nav> <!-- height not fixed -->
<div class="container-fluid eye-catcher">
<div class="row">
<div class="col-sm-8"> ... </div>
<div class="col-sm-4 image"> ... </div>
</div>
</div>
In the end, it should look like this:
The code for the image I have is this, which works fine...
.image {
background-image: url("image.png");
background-size: contain;
background-position: center top;
background-repeat: no-repeat;
height: 100%;
}
...but how can I let the row filling up (only) the remaining space (no scrollbar should be visible then)