Hello,
I want my blocks to have the same height regardless of the desktop resolution.
Currently, I have an alignment with respect to the top of each block, and this one has its height modified according to the content of the block (example we see that the 4th block is longer than the others)
After searching the forum, I applied the following code.
@media screen and (min-width: 768px) {
.flexGrid.gridAlignTop.centerColumns {
display: flex !important;
}
.grid_html_color.oneQuarter.flexItem.grid_sections {
grid-auto-rows: 1fr !important;
grid-template-rows: 1fr !important;
grid-template-columns: 1fr !important;
}
}
.flexGrid.gridAlignTop.centerColumns being the master elements of the 4 div blocks.
But without success.
Is this a problem with the CSS properties that I’m unfamiliar with, or is it just my selector that is wrong?
Thanks in advance for your clarifications!
