Consider this scenario:
.d1 {
width: 100px;
float: left;
}
.d2 {
width: auto;
float: left;
}
<div class="d1">Fixed Content</div>
<div class="d2">This content should expand to fill the rest of the page vertically.</div>
This setup is not functioning as intended. Is there a way to keep a fixed width div on the left side of another div with adaptable width?
Thanks in advance.