I have found several post with similar problems, but no good answers. I have two divs inside a div that has display: table-row propertie. My right div needs to have fixed with:200px and the left one must take the remaining space.
CSS:
.dhPictureDiv{
float:left;
height:100%;
background-color:red;}
.dhInfoWrapper{
width:200px;
float:right;
background-color:yellow;
border: 0px solid red;}
.dhDivRow {
display: table-row;}
HTML:
<div class="dhDivRow><div class ="dhPictureDiv></div><div class ="dhInfoWrapper></div></div>