I have a view with 4 articles within a colored box. When the screen is wide enough they need to be displayed side by side and have the same height like this:
Article 1 Article 2
Article 3 Article 4
I have tried adding the style so the container - row and columns have following style, but to no result either:
.container-height{
display:table;
}
.row-height{
display:table-row;
}
.col-height{
display:table-cell;
float:none;
}