I need two rows, the first one have 3 columns and the second I need to span all the width just like the td colspan=3
would do
Or display: table-cell; behave like colspan=3
I am using display: table-row; width: 100%;
How can it be done ?
This is my CSS :
<style>
.boxer {
display: table;
border-collapse: collapse;
}
.boxer .box-row {
display: table-row;
}
.boxer .box-row-search {
display: table-row;
width: 100%;
}
.boxer .box {
display: table-cell;
text-align: left;
vertical-align: top;
border: 1px solid black;
}
</style>