https://i.sstatic.net/BRdEx.png
This container presents a challenge.
The last element in the grid, which has a table-like structure, appears strange. Indeed, it looks odd because it is taking on the maximum height of the element present in that row.
My goal is for the element to have a different appearance...
https://i.sstatic.net/MQiiB.png
Can you advise me on which CSS property should be applied within the bodyContainer where I utilized grid?
Below is the CSS I've implemented.
.bodyContainer{
margin-top: 3rem;
padding: 0rem 2rem 0rem 2rem;
display: grid;
grid-template-columns: 25% 25% 25% 25%;
justify-content: space-between;
}