<div class="box">
<dl class="item item--left"></dl>
<dl class="item item--right"></dl>
</div>
dl{
margin: 0;
height: 100px;
min-width: 100px;
}
.box {
&{ overflow: hidden; }
.item{ display: block; }
.item--left{
background: gray;
float: left;
}
.item--right {
background: #FFF;
}
}