Я думаю, что flexbox больше подходит для этого
.container {
display: flex;
height:100px;
flex-wrap:wrap;
width:100%;
}
.container > div:first-child{
flex:1 1 80%;
background:red;
}
.container > div:last-child{
flex:1 1 20%;
background:blue;
min-width:100px; /*adjust this like you want*/
}
/*to illustrate*/
.container:hover {
width:40%;
transition:1s all;
}
<div class="container">
<div></div>
<div></div>
</div>