Firstly, excuse me for my bad english. But I have a problem with CSS.
I want to make the same height in color block in Div column.
The block green is not the same height as the blue block. I want them to be at same height.
The block : http://postimg.org/image/ej2jujnt1/
<div class=cols>
<div class="col col-1-3">
<div class="bloc">
</div>
<div class="col col-2-3">
<div class="bloc">
</div>
<div class="bloc">
</div>
</div>
</div>
.cols {
position: relative;
clear: both;
}
.cols > .col-1-3, .cols > .col-1-3 + .col-1-3 + .col-1-3 {
width: 307px;
}
.cols > .col {
float: left;
}
.cols > .col + .col {
margin-left: 14px;
}
.cols > .col-2-3 {
width: 629px;
}
.bloc {
position: relative;
z-index: 1;
overflow: hidden;
margin: 0px 0px 14px;
box-shadow: 0px 2px 5px 1px #BFBFBF;
border-radius: 3px 0px 0px;
background-color: #FFF;
}
Is there any possible solution?
Thanks,
Vincent