I've just implemented Subgrid for the first time on my latest project and this was by far the most beginner friendly tutorial I came across on TH-cam. Just what I needed. Thank you!
Just found your channel and I really like your videos and the way you explained. As you talk about grid/subgrid, it'd be great to see a video of one or more popular templates out there (header, aside, main, footer, etc.). I'd love to see your approach. Thank you for the awesome videos.
You are the best bro. I was struggling with cards for my portfolio trying to do stuff with grid and everything and you taught me a lot with just a few lines. Still a little confused with the minmax() and how grid works still. But at least I have something that is working
I use grid for everything except for buttons next to text, text next to text, or headers with an element on each side, then I use flex. Otherwise grid all the way baby. Maybe it's just the way our brains work differently...
First off, congrats on 100k 🥳 Secondly, I didn't even know that this feature existed!! I usually just make nested grids or use Bootstrap. So thanks for the info !!
I bought your CSS course and it was a good investment, learning to use a page builder and Wordpress but knowing what the page builder is built upon is extremely helpful, of course it's not just CSS but since the builder lays down the HTML and Javascript and PHP, you can go a lot further if you can use custom CSS, looking forward to your vanilla Javascript course...
Yay subgrid!! It took me a long time to understand how using subgrid differed from just using an `inherit` on g-t-column or g-t-r ; Btw it’s not recommended to create gutters by giving the body width:90% ; it can affect how margins and padding are calculated , create unexpected scroll bars ,alignment and overflow issues, esp for responsive screen sizes. Better to use some kind of wrapper with padding and/or a max-width (or width: min(100%, 60ch)! I lovelovelove the min function!)
@@clevermissfox I agree with you about the gutters. For the purposes of creating a video about a specific subject, I'll often take shortcuts towards whatever is unrelated to the subject being presented, thus gutters on the body.
@@slayingthedragon I understand, I’ve done the same by putting flex/grid on the body to center the project , I just worry about beginners not knowing and picking up bad habits. Thanks for the video, for some reason I find subgrid easier than not several grids; maybe bc there’s only one grid to configure/wrestle with 😆
There is one part I don't understand, what's up with the 1/4 for grid rows? Is it just stating that each one is only one fourth or a total of four grid items? And if that's the case why wouldn't it go under grid columns since the items are spanning across four columns?
For this partcular layout you can use flexbox to push the images at the edge of their containers, you just have to use flex-direction:column; and margin-top:auto;
Excellent subgrid tutorial, really love the way you teach and explain things simple. The only thing, I can't get to work using subgrid and media queries same time. For example, I want to have 4 boxes in a row for desktop, but 2 boxes on tabled and 1 on mobile. How do I have to change that code? 🙂
We've come so far from the good old days of 'float: left' and clearfix hacks. The old way of doing layouts like this involved a lot of nesting with flex, but it was clunky as hell. This new approach is really awesome. However, as of today Caniuse puts browser support for this feature at 88%, which is quite low for it to be used in production.
Amazing explanation! Question though - how would I go about creating a gap *between* subgrids without affecting the gap of the elements within? Say for example, I am creating a blog grid, kind of like the one in the video. I want the gap between the header, the excerpt and the flower image to be .5rem, but I want the gap between each card to be some big number like 8rem. I noticed that at that point subgrid breaks apart, forcing the individual items to become way larger than they are. This is still the case even if we 'override' the gap in the subgrid.
I think this is possible with flex. You just wrap this boxex with flex item, make boxes stretch vertically. And then align images to the bottom. But this subgrid thing looks pretty cool.
Geez u make it look so easy. And great explaination! I guess media queries is really not needed. Question tho. How do i move an image that is on the right side of the viewport to go above the text on the left side when viewing in smaller screens? So normal size/big screen Text and Image will be next to one another. Please help
this is my first time i watch your videos and really it very helpful, please why when we use images with different sizes and orientation the designed broken?
very nice. some Feedback: -mute or at least make the type sound quieter -bit faster pace would be nice. you sometimes Show stuff that does not matter (like that you can change the color of the grid overlay in the devTools), you said it urself 😅 - eg padding the body does not belong in this video. it has nothing todo with subgrid keep up the good work :)
display: flex flex-direction: column justify-content: space-between What’s the problem with this code?! These are three lines solve your designer’s design)))
Well, this video gives a really good explanation but the example used here it's not ideal. The easiest solution is to add "grid-template-rows: auto 1fr auto" to the ".box" grid item and you don't need any subgrid nor the other properties that go with it
The first element of the box is between the first and second grid lines. The second element is between the second and third grid lines... So since we have three elements, that's 1/4.
Exactly! 1/3 would mean 2 rows but since we need 3 rows (heading, paragraph, image) we have to use 1/4 which means "from line 1 to line 4) which refers to 3 rows
Got it just like this: 1st line is header title to description 2nd line is description to image 3rd line is image to end 1 start __________________________ Title/Header 2 _______________________________ Description 3 _______________________________ Image 4 end____________________________
I've just implemented Subgrid for the first time on my latest project and this was by far the most beginner friendly tutorial I came across on TH-cam. Just what I needed. Thank you!
This is exactly the answer to the problem I was having, thank you for explaining this so concisely
Thanks.
I didn’t appreciate subgrid until I had to work with named grids that had sticky headers
Wonderful... This tutorial has five stars to me, it's concise, well explained, illustrative, and leaves nothing unchecked... Applause
The comeback of a legend ..
I was rewatching all your previous posts and got so excited when I saw your new upload!
Just found your channel and I really like your videos and the way you explained. As you talk about grid/subgrid, it'd be great to see a video of one or more popular templates out there (header, aside, main, footer, etc.). I'd love to see your approach.
Thank you for the awesome videos.
Superb explanation! Thanks. The only thing I'd suggest is for more explanation on what things like the 1/4 and 1fr and such mean.
This was hugely helpful!
Excellent explanation and just what I needed to showcase my cards of products. LIKE.
you're just too good at writing css, you never failed to impress me
This is exactly what I’ve been looking for! Great content sir
He’s coming back on 100k. Congrats
You are the best bro. I was struggling with cards for my portfolio trying to do stuff with grid and everything and you taught me a lot with just a few lines. Still a little confused with the minmax() and how grid works still. But at least I have something that is working
Great tutorial. Big thumbs up 👍🏼 I've increased my css grid knowledge thanks to you
does anyone else likes to use flex on everything unless they absolutely need to use grid or is it just me ?
i think everyone is like that.
I use grid for everything except for buttons next to text, text next to text, or headers with an element on each side, then I use flex. Otherwise grid all the way baby. Maybe it's just the way our brains work differently...
Flex first here.
i also 😂😂😂
I use flex , because I don't know nothing in grid 😅😂
I just watched your other videos for the 10th time. Amazing how you just uploaded one again! Waiting for the javascript course!
Thank you man please upload more video about CSS Like building actual project from start to end
whoa this feature is incredible... great explanation, too.
First off, congrats on 100k 🥳
Secondly, I didn't even know that this feature existed!!
I usually just make nested grids or use Bootstrap. So thanks for the info !!
I bought your CSS course and it was a good investment, learning to use a page builder and Wordpress but knowing what the page builder is built upon is extremely helpful, of course it's not just CSS but since the builder lays down the HTML and Javascript and PHP, you can go a lot further if you can use custom CSS, looking forward to your vanilla Javascript course...
🎉Wow, I finally saw your new work after such a long time. Very good tutorial~❤
You are one of the best CSS teacher on yt
Yay subgrid!! It took me a long time to understand how using subgrid differed from just using an `inherit` on g-t-column or g-t-r ;
Btw it’s not recommended to create gutters by giving the body width:90% ; it can affect how margins and padding are calculated , create unexpected scroll bars ,alignment and overflow issues, esp for responsive screen sizes. Better to use some kind of wrapper with padding and/or a max-width (or width: min(100%, 60ch)! I lovelovelove the min function!)
@@clevermissfox I agree with you about the gutters. For the purposes of creating a video about a specific subject, I'll often take shortcuts towards whatever is unrelated to the subject being presented, thus gutters on the body.
@@slayingthedragon I understand, I’ve done the same by putting flex/grid on the body to center the project , I just worry about beginners not knowing and picking up bad habits. Thanks for the video, for some reason I find subgrid easier than not several grids; maybe bc there’s only one grid to configure/wrestle with 😆
Wonderful explanation buddy!! Keep up the good work.❤️
best subgrid tutorial
Idk why but once you explain it im just like oh...well...yeah that makes total sense now .
There is one part I don't understand, what's up with the 1/4 for grid rows? Is it just stating that each one is only one fourth or a total of four grid items? And if that's the case why wouldn't it go under grid columns since the items are spanning across four columns?
great to have you bacK!
For this partcular layout you can use flexbox to push the images at the edge of their containers, you just have to use flex-direction:column; and margin-top:auto;
The best tutorials for learning css
Truly a greeat lesson. Fantastic. Very uunderstandable aand vitally important thank you.
Thank you, for the helpful information! Keep making these great videos!
Awesome Video with a great explanation!!
Great video, the only trade off (as far as I know) is when you need to make it responsive.
finally, you've kept us waiting Ramzi
I needed this, thank you ❤
amazing tutorial as always thank you!!
Thanks for the tips, they worked out great.
Thanks bro I always enjoyed ur tutorials
I can't believe it's taken so many decades to get this far for creating layouts using CSS.
What an amazing tutorial. Thank you!
After a long time got ur video... 👍👍
man it was really helpful for me becuase i always faced prblems here
This channel definitely slayed!
The explanation starts around 8:13. And it ends around 11:46.
So, about 3 minutes in total
>2x speed works great. It makes it
Excellent subgrid tutorial, really love the way you teach and explain things simple. The only thing, I can't get to work using subgrid and media queries same time. For example, I want to have 4 boxes in a row for desktop, but 2 boxes on tabled and 1 on mobile. How do I have to change that code? 🙂
We've come so far from the good old days of 'float: left' and clearfix hacks.
The old way of doing layouts like this involved a lot of nesting with flex, but it was clunky as hell. This new approach is really awesome. However, as of today Caniuse puts browser support for this feature at 88%, which is quite low for it to be used in production.
another super clean tutorial, I could not have explained it better! Glad to see you back my guy!
Classic Ramzi recording at 1am
wow, the legend is back
What a great day when your video comes
Thnx bro also expceting more new videos and your new courses also stay heathly.:)
Great explanation, thanks!
Great explanation thanks❤
Thank you! Your explanation are great!🎉
the king is back 😭🙏🏾🙏🏾
Nice to see you again ✌
Amazing explanation!
Question though - how would I go about creating a gap *between* subgrids without affecting the gap of the elements within?
Say for example, I am creating a blog grid, kind of like the one in the video. I want the gap between the header, the excerpt and the flower image to be .5rem, but I want the gap between each card to be some big number like 8rem. I noticed that at that point subgrid breaks apart, forcing the individual items to become way larger than they are. This is still the case even if we 'override' the gap in the subgrid.
I needed that so much🎉🎉
SO SIMPLE!!! OMG
Dragon is back 🔥
Я не знаю кто ты, но ты объяснил все за 14 минут лучше, чем наши "разработчики" объясняют это все за час. Спасибо!
Your videos help me alot thank you
Very useful. Thank you.
The master has returned 😤
"learn" is when you can apply what you saw in this video a week from today without rewatching it. This is more like "see how it works..."
I think this is possible with flex. You just wrap this boxex with flex item, make boxes stretch vertically. And then align images to the bottom. But this subgrid thing looks pretty cool.
U are back
awesome video gained something new
Geez u make it look so easy. And great explaination! I guess media queries is really not needed. Question tho. How do i move an image that is on the right side of the viewport to go above the text on the left side when viewing in smaller screens? So normal size/big screen Text and Image will be next to one another. Please help
Worth subscribing you.
very nice work. thank you!
thanks for the clear explanation
The GOD off CSS
Do you have any idea how good your channel is and you only have 14 uploads so far? I have ADHD and you are the only I can actually understand.
wooooow that was really awesome 😍😍😍😍😍😍
We missed you so much bro. Please prepare better next time. Slaying a dragon shouldn't take this long.
I agree
Finally legend got his password correct
😂
best explanation
Impressive 🤎
Great video
Very Good! 👏👏👏
this is my first time i watch your videos and really it very helpful, please why when we use images with different sizes and orientation the designed broken?
thats great. thanks dear
This was perfect 👌
Welcome back ❤
Very useful!! 💪
ayooooo the king is back ⭐⭐
Love your videos ❤❤❤❤
I am only 12
Great Video!
You replied 1 min after video uploaded. Watch it first
Please tell about how to use masonry library with sidebar on a webapp.
wow .. thank you
:))))
very nice.
some Feedback:
-mute or at least make the type sound quieter
-bit faster pace would be nice. you sometimes Show stuff that does not matter (like that you can change the color of the grid overlay in the devTools), you said it urself 😅
- eg padding the body does not belong in this video. it has nothing todo with subgrid
keep up the good work :)
teach us mern stack please
come back with React 🔥🔥 please
display: flex
flex-direction: column
justify-content: space-between
What’s the problem with this code?! These are three lines solve your designer’s design)))
tops of the text boxes will not be aligned with each other
Well, this video gives a really good explanation but the example used here it's not ideal. The easiest solution is to add "grid-template-rows: auto 1fr auto" to the ".box" grid item and you don't need any subgrid nor the other properties that go with it
what about display: flex; flex-direction: columns; justify-content: space-between; ?
tops of the text boxes will not be aligned with each other, because if you have less text, flexbox will force it to stay in the cross-center.
and what about making each item display: flex and setting flex-grow: 1 on each paragraph?
Yea that's what I personally do, subgrid though is great if you're using grid
I am confused, why not 1/3
The first element of the box is between the first and second grid lines. The second element is between the second and third grid lines... So since we have three elements, that's 1/4.
Exactly! 1/3 would mean 2 rows but since we need 3 rows (heading, paragraph, image) we have to use 1/4 which means "from line 1 to line 4) which refers to 3 rows
Got it just like this:
1st line is header title to description
2nd line is description to image
3rd line is image to end
1 start __________________________
Title/Header
2 _______________________________
Description
3 _______________________________
Image
4 end____________________________
How do you display those colored layer overlays in your DOM?
perfection