Answers for "css grid without same height"

CSS
0

css grid make all rows same height

grid-auto-rows: 1fr;
Posted by: Guest on December-29-2020
0

css grid not taking full row height

.img_container{
    height: 50%; // or whatever value just make sure you give your parent a height
    width: 100%;
    background: url('link to your image') 50% no-repeat;
    background-size: cover;
 }
Posted by: Guest on July-28-2021

Code answers related to "css grid without same height"

Browse Popular Code Answers by Language