python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to set width of grandchild element with grid-row?
My HTML & CSS is more or less like this:
.grid {
display: grid
grid-template-rows: 33vh 33vh 33vh;
}
.grandma {
grid-row: 2/span 1;
}
<div class="grid">
<div class="grandma"...

dawg
Votes: 0
Answers: 1
Is it possible to use a fixed min and max width for columns in a CSS grid which are repeating and wrappable?
I'd like to set up a CSS layout where a container contains a fixed number of flexible width tiles with the following properties:
Spacing in between tiles is fixed and consistent
They can expand in si...

baseten
Votes: 0
Answers: 1
Use CSS Grid layout in a specific case
I could get the result I want in many other ways, but I want to understand if it is possible to fix the layout while keeping the grid system.
Check the result first to get a better understanding
$...

Baro
Votes: 0
Answers: 1