I have a container at 100% width and an image in a left floating <div>
at 100px X 100px with a right floating <div>
at the same height but i want it to fill the remaining space without having to use a table structure. I believe i can do this with the css element Flex but does anyone know how?
CSS
#container {
width:100%;
height:100px;
}
#image {
width:100px;
height:100px;
float:left;
}
#rightcontent {
float:right;
}
HTML
<div id="container">
<div id="image">
</div>
<div id="rightcontent">
</div>
</div>