Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<div id="box">
<div id="a">
    <div id="a1">a</div>
</div>
<div id="b">middle text</div>
<div id="c">
    <div id="c1">c1</div>
    <div id="c2">c2</div>
</div>
</div>
 
#box {
    display: table;
    width:100%;
    border-collapse: collapse;
    border-spacing: 0;
}
#a {
    display: table-cell;
    background-color: lime;
}
#b {
    display: table-cell;
    background-color: blue;
}
#c {
    display: table-cell;
    background-color: red;
}
#c1 {
    float: left;
    height: 100%;
    background-color: pink;
}
#c2 {
    float: left;
    height: 100%;
    background-color: pink;
    
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers