Is there a way to have two divs at 50% width, even if the content of the first div has a minimum size?
<div class="col-xs-6">
<div style="min-width:1000px">
<label>The value here...</label>
</div>
</div>
<div class="col-xs-6">
<label>TEST</label>
</div>
In this code snippet, the first div does not appear as 50% due to the minimum width set for its content.
Any suggestions on how to make the first div 50% in size (with a horizontal scrollbar)?