@@GuitarHope Sorry for the late response. But the technologies that ive learned are HTML, CSS/SASS, Vanilla JavaScript, Bootstrap, and learned my way around github and the terminal. I made learning an everyday thing and listened to what the big tech youtubers said about finding a job , replicated a lot of sights from frontendmentor, took as much classes from scrimba. And i think most important, when i talked to companies that wanted to hire me i just sounded excited and passionate to talk to them and told them im ready to give it my all.
@@Muffi606 So i had no professional tech experience, i transitioned from a barber to a front end dev. I woke up early in the mornings before work / after laying my child down at night and followed tutorials, built my own ideas, or just replicated sites. Listen to podcast/youtube videos on the way to work/at lunch, i made development my life. For real give it time, consistency is key, trust the process. I've learned things that i thought i could never learn. And have trust in your self and believe everything brad says.
In the media queries part, instead of using grid-template-columns:1fr and changing all that spanning stuff, i used display:block and added a little margin here and there. It worked.
The way you teach and show alternative ways of doing stuff than just one example are the type of tutorials that give people better perspectives. Very well done
Thank you Brad. Amazing tutorial as always. I personally do not take your generous sharing of knowledge for granted because I can imagine how much work goes into creating great tutorials like these.
This is by far my favorite grid tutorial. Not only did you show the basics and syntax, but we got example of how to incorporate it into a somewhat real scinero. It was a great touch combining the use of grid and flex box to help tie both uses together. Bravo.
Old guy here(retired). I'm not looking for a job but I love programming. Thank you for your crash courses. I'm in the process of building a weather station and I want to collect weather data and display it(dynamically) on my web page. Your courses are helping me achieve something that I would not be embarrassed to put out there.
Just in time i actually skipped Grid while learning Css and moved to Js after a few projects now i was reconsidering Grid literally few hours ago !! Thanks alot your React front to back is Golden
Really concise course, thanks! As for the project in the end, I suggest to change the media queries from max-width to min-width, i.e. do mobile first design. Then the "default" view of the cards is just stacked and very simple, and all the grid spans, cols and rows go to the media query. The advantage of this is that we do *not* have to reset the grid styles as shown in the video (51:00). So we achieve the same result with less code! This is very well explained as well in Kevin Powell's videos on responsive design.
Thank you, sir for another excellent tutorial. I am a pensioner who worked in the medical device industry, where we worked with embedded SW systems. Huge difference but fun!
Now you are one of my favourite teachers. I really like the project base tutorials especially when you build things from scratch and give us a chance to learn some fundamental things from it.
been seriously waiting on this, just diving into CSS and I loved how simplified your Flexbox crash course was and was looking to get into Grid next but other videos just weren't doing it for me until I found this, awesome
Just in time i actually slipped Grid while learning CSS and moved to JS after a few projects now I was reconsidering Grid literally few hours ago!! Thanks alot your React front to back is Golden
The way you explain grid i sure who watch it complete there will be no need to watch some other video on grid Just amazing Best wishes from Pakistan Just keep it up
I first followed your html tutorial a few years ago. I always refer you as being the OG of web dev and I am very grateful for you opening the door for me. Ive learned so much and am learning tons, thanks to you. I took a boot camp and really got a leg up thanks to your teachings. Hope you have a great weekend.
Thanks Brad for making this video, I have been running away from grid and using only Flexbox, but you just changed my mind, CSS grid is so powerful and easy. THANKS !!!
I finished grid system with your modern HTML and CSS course from udemy and also with your crash course on TH-cam and all of them really make sense. But I feel that this one is also a must watch crash course 😂. Any video from Brad for me it is a must watch 😁
every time i feel low and want to quit coding, I watch your videos. you teach concepts easily and most of the time you make me feel that I can learn to code, I just need to keep going. thanks man, thanks a bunch!😊
Hi Brad, I can't thank you enough for these videos which you make. You are doing such a GREAT JOB by sharing your knowledge with us.Thank you soooooo much.
From somehow who is old-school with the old way of tables & columnspan's , your videos help a lot, & maybe I won't throw all the prior knowledge away. I want to get back into it & this is sooooo much simpler. A new learning curve. Glad I ran across you.
Its crazy how much ive learned over the years with Travis....I first started watching his html and css tutorials then I stopped watching....then I moved on to full stack,wordpress,and shopify development...
Thank you Brad to you and your company Traversy Media for getting this polished and easy to follow video up online. Me after 13 years of touching any code I have to update a product calculator. CSS Grid with @media, wow! You are correct the younger ones may not know how good they've got it :)
Hy Brad, Nice tut as always. jut want to add that having this in the media query also works: @media (max-width: 768px) { .testimonials { display: block; }
The other day my senior dev refactored some of my flexbox code with css grid and I was so impressed that I thought, I need to dig deeper into this. By the way, yes, I learned to code with Brad and now I'm happily employed.
Great video, I finally understand how to use CSS grid now. I recommend people who are going to watch this video to do the testimonials section all by yourself first and then watch the video to see how Brad does it so that you can see something you went wrong with or can improve on. Once again thanks Brad for another amazing video!
Also a tip for the testimonials section is that if you design mobile first, then it will be much simpler to design for larger screens as less media queries will be involved.
Nice, clean and quick video, regarding the media query, instead of resetting each card grid-column/grid-row and figuring out what are the correct numbers, we can simply set both properties to initial like this: .testimonials .card { grid-column: initial; grid-row: initial; } Thanks Brad,
This is incredible! I'm good with CSS in terms of knowing how to use Flex and Grid, but never knew how to actually make it look good on a webpage, thank you!
Grid and Flexbox is such a fun and powerful combo once mastered. The new (first time I'm seeing it) intro animation also looks great with the code editor in the background, good job there!
How you use Grid is how I imagined it would be used for. Thanks for the refresher. I keep forgetting things and not writing them down. If I can visualize it like how you are setting it up I can remember it.
I've literally came back to this video 5 times already. Thanks so much for this makes things a lot easier. I've come a long way with dev since taking your Mongo course lol.
I've taken a couple of courses already and they all go deep in the specifics but I still wasn't getting it, but you really teach the same way I learn with practical use explanations that are just really simple and easy to understand, and I learned so many VS Code shortcuts just from watching you work. Thank you so much, I will be doing your other courses as well
Great Video! Just a quick tip: Instead of resetting each card with their respective numbers you could just do an overall reset, since the cards will span over 1 col / 1 row anyways. .card { grid-column: auto; grid-row: auto; }
Getting back into front end development. Grid and flex is a game changer. I remember doing table layouts in dreamweaver when I first started and then floats. I got so good with floats that I get an urge to use them again but have to catch myself and use grid and flex since they are so much cleaner and powerful. No more hacks to align stuff 🤭
Thank you so much for this Brad! I found you last year came back looking for ya. I'm self learning through Codecademy and I'm so glad I came to watch both your flexbox and grid tutorials. They're amazing! You're a great teacher and a great inspiration. You give me so much hope! Will definitely come back to do projects with you and to keep learning from you. Stay blessed!
This is one of the first times I've genuinely preferred to learn over doing something else. Your tutorials are great. I've only been following them for about a week now and I have a better grip on HTML & CSS then I did from secondary school & college.
Brad this is awesome and I loved every moment of it. You make it really seem easy and will certainly put this tutorial into good use. Much appreciation from Kenya!
Excellent as usual. Appreciated the notion that the grid is useful for page layout and that flex (and grid) can then be use to organize elements within the grid area.
Brad, I don't have words to thank you. You are really a great mentor for countless learners like me. You are awesome man. God bless you. Keep posting. Keep teaching. Love from INDIA. ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️
You mentioned that you like to do everything from start, not copy paste. That is only one of your strengths in teaching, and what makes your tutorials stand out. Thank you
A double thank you for the great instruction, from those learning to use grid and VS code at the same time. You are basically covering both. Your pace is quick, but that's why they invented the pause button!
I always come to your crash courses and udemy courses to fresh'n up on what is going on in the world of JS/CSS, etc. We tend to get stale working on the same stuff day in and day out, so it makes my brain start functioning again.
Hi Brad! Just to let you know, I became a professional developer recently and I wanted to thank you because with your videos my path was much easier. So that's it, thank you so much for your kindness to share!
Hi.... how did you do that? I'd love to become a professional developer too! I've been "playing" with HTML and CSS since 2012.... any advice would be greatly appreciated 🙏
coding along with brad always seems easy for me and my confidence level is way up. The problem starts when I code on my own and everything gets messed up. i dont know what to do man! if anyone of you is intresten in becoming my partner in web dev, your welcome. html, css and i started javscript now
God bless you for showing the intricate parts as well, it's been around 10 years since the last time I handled web development, nowadays I don't remember even the smallest thing haha.. good vid!
I stopped doing websites for 6 years. Recently came back and was like: what??? ... Reading fast all entries on MDN CSS, but your flex & grid - crash course - helped me understand these concepts the most. JS and HTML5 changed a lot too. But am fine with those now (except Promises; which I don't need yet.).
I always loved your teaching style your my goto for any JS framework, library, html css crashcourse etc..Thanks brad please keep doing what your doing love from india.
This was an excellent lesson, very good pacing and explanations. I love that you showed the incorporation of Flexbox in the real world example. As a Flexbox fanboy, I do appreciate the ease of Grid and the additional layout css properties. I will have to go ahead and give it a go! Thank you!
I remember taking your crash course on html, 8 months ago and now I’m starting my first front end dev job next week. Thanks for all you do Brad!
If you don't mind, what have you learnt in these 8 months in order to be be able to do the job?
Can you share a little bit more about your journey, just starting front end development
@@GuitarHope Sorry for the late response. But the technologies that ive learned are HTML, CSS/SASS, Vanilla JavaScript, Bootstrap, and learned my way around github and the terminal. I made learning an everyday thing and listened to what the big tech youtubers said about finding a job , replicated a lot of sights from frontendmentor, took as much classes from scrimba. And i think most important, when i talked to companies that wanted to hire me i just sounded excited and passionate to talk to them and told them im ready to give it my all.
@@Muffi606 So i had no professional tech experience, i transitioned from a barber to a front end dev. I woke up early in the mornings before work / after laying my child down at night and followed tutorials, built my own ideas, or just replicated sites. Listen to podcast/youtube videos on the way to work/at lunch, i made development my life. For real give it time, consistency is key, trust the process. I've learned things that i thought i could never learn. And have trust in your self and believe everything brad says.
@@robrice4076 this is awesome
In the media queries part, instead of using grid-template-columns:1fr and changing all that spanning stuff, i used display:block and added a little margin here and there. It worked.
5:54 the hack to add 9 numbered items in VS code felt like a superpower. Thanks for this video. I am already lovin' it.
The way you teach and show alternative ways of doing stuff than just one example are the type of tutorials that give people better perspectives. Very well done
Brad is the reason why I have not given up on web development.. Thank you so much sir
Thank you Brad. Amazing tutorial as always. I personally do not take your generous sharing of knowledge for granted because I can imagine how much work goes into creating great tutorials like these.
This is by far my favorite grid tutorial. Not only did you show the basics and syntax, but we got example of how to incorporate it into a somewhat real scinero. It was a great touch combining the use of grid and flex box to help tie both uses together. Bravo.
Old guy here(retired). I'm not looking for a job but I love programming. Thank you for your crash courses. I'm in the process of building a weather station and I want to collect weather data and display it(dynamically) on my web page. Your courses are helping me achieve something that I would not be embarrassed to put out there.
Just in time i actually skipped Grid while learning Css and moved to Js after a few projects now i was reconsidering Grid literally few hours ago !! Thanks alot your React front to back is Golden
Really concise course, thanks!
As for the project in the end, I suggest to change the media queries from max-width to min-width, i.e. do mobile first design. Then the "default" view of the cards is just stacked and very simple, and all the grid spans, cols and rows go to the media query. The advantage of this is that we do *not* have to reset the grid styles as shown in the video (51:00). So we achieve the same result with less code!
This is very well explained as well in Kevin Powell's videos on responsive design.
oh i just understood that
Thank you, sir for another excellent tutorial. I am a pensioner who worked in the medical device industry, where we worked with embedded SW systems. Huge difference but fun!
This guy knows how to teach things properly and shows on actual examples what he taught. Thank you for the great video!
Now you are one of my favourite teachers. I really like the project base tutorials especially when you build things from scratch and give us a chance to learn some fundamental things from it.
been seriously waiting on this, just diving into CSS and I loved how simplified your Flexbox crash course was and was looking to get into Grid next but other videos just weren't doing it for me until I found this, awesome
Just in time i actually slipped Grid while learning CSS and moved to JS after a few projects now I was reconsidering Grid literally few hours ago!! Thanks alot your React front to back is Golden
I've gone over this several times... this time it just clicked.
Brad, not ever a waste of time watching your videos!
Nice job as usual. 🙂
The way you explain grid i sure who watch it complete there will be no need to watch some other video on grid
Just amazing
Best wishes from Pakistan
Just keep it up
zindaa hona bhai. thoda sa phikr rakh khud pe
I first followed your html tutorial a few years ago. I always refer you as being the OG of web dev and I am very grateful for you opening the door for me. Ive learned so much and am learning tons, thanks to you. I took a boot camp and really got a leg up thanks to your teachings. Hope you have a great weekend.
Thanks Brad for making this video, I have been running away from grid and using only Flexbox, but you just changed my mind, CSS grid is so powerful and easy. THANKS !!!
I finished grid system with your modern HTML and CSS course from udemy and also with your crash course on TH-cam and all of them really make sense. But I feel that this one is also a must watch crash course 😂.
Any video from Brad for me it is a must watch 😁
every time i feel low and want to quit coding, I watch your videos. you teach concepts easily and most of the time you make me feel that I can learn to code, I just need to keep going. thanks man, thanks a bunch!😊
Hey Brad, I just wanna thank you so much for your hard work. Your channel is invaluable! You're awesome.💕
"I like to do things from start to finish and not just paste things in..."
This is where you had my definite thumbs up. Thank you!
This is the best CSS grid tutorial on TH-cam. Thanks for this.
Hi Brad, I can't thank you enough for these videos which you make. You are doing such a GREAT JOB by sharing your knowledge with us.Thank you soooooo much.
Always waiting for your new crash course, most powerful and useful for me❤️
Thanks for this video, i was so much struggling to learn css grid but you make this so easy to understand.
From somehow who is old-school with the old way of tables & columnspan's , your videos help a lot, & maybe I won't throw all the prior knowledge away. I want to get back into it & this is sooooo much simpler. A new learning curve. Glad I ran across you.
I'm just watching your flexbox video and you came up with Grid video.
Thank you so much
Nice. I would suggest watching the flex video first and then this.
I'm jumping on this. Thank you so much. My fav TH-cam teacher.
Its crazy how much ive learned over the years with Travis....I first started watching his html and css tutorials then I stopped watching....then I moved on to full stack,wordpress,and shopify development...
Thank you Brad to you and your company Traversy Media for getting this polished and easy to follow video up online. Me after 13 years of touching any code I have to update a product calculator. CSS Grid with @media, wow! You are correct the younger ones may not know how good they've got it :)
Fantastic tutorial. I love you’re teaching style and the pace was spot on. This took my game up a notch in a sorely needed area.
Hy Brad, Nice tut as always. jut want to add that having this in the media query also works:
@media (max-width: 768px) {
.testimonials {
display: block;
}
.testimonials > * + * {
margin-top: 2rem;
}
}
I'm 9 months into web dev // This tutorial has been very enlightening and extremely helpful. Thank you!!
The other day my senior dev refactored some of my flexbox code with css grid and I was so impressed that I thought, I need to dig deeper into this.
By the way, yes, I learned to code with Brad and now I'm happily employed.
Good demo of grid. At 50:40 it seems like mobile-first CSS would be the clean solution.
Great video, I finally understand how to use CSS grid now. I recommend people who are going to watch this video to do the testimonials section all by yourself first and then watch the video to see how Brad does it so that you can see something you went wrong with or can improve on. Once again thanks Brad for another amazing video!
Also a tip for the testimonials section is that if you design mobile first, then it will be much simpler to design for larger screens as less media queries will be involved.
Nice, clean and quick video,
regarding the media query, instead of resetting each card grid-column/grid-row and figuring out what are the correct numbers, we can simply set both properties to initial like this:
.testimonials .card {
grid-column: initial;
grid-row: initial;
}
Thanks Brad,
my man I have learn so much with you! thank you... you don't know how much I appreciate your tutorials
for media query ,i just used flex box and set flex-direction :column . Easy and Thank you Brad ,Credit goes to you
This is incredible! I'm good with CSS in terms of knowing how to use Flex and Grid, but never knew how to actually make it look good on a webpage, thank you!
Grid and Flexbox is such a fun and powerful combo once mastered. The new (first time I'm seeing it) intro animation also looks great with the code editor in the background, good job there!
thank you for explaining this in a very simple manner.
How you use Grid is how I imagined it would be used for. Thanks for the refresher. I keep forgetting things and not writing them down. If I can visualize it like how you are setting it up I can remember it.
Without watching whole video , you deserve my like . I know it will be great video
I've literally came back to this video 5 times already. Thanks so much for this makes things a lot easier. I've come a long way with dev since taking your Mongo course lol.
I've taken a couple of courses already and they all go deep in the specifics but I still wasn't getting it, but you really teach the same way I learn with practical use explanations that are just really simple and easy to understand, and I learned so many VS Code shortcuts just from watching you work. Thank you so much, I will be doing your other courses as well
Thank you so much for this Brad!
Sincerely,
Self-teaching Front-End Developer (to be).
Great Video!
Just a quick tip:
Instead of resetting each card with their respective numbers you could just do an overall reset, since the cards will span over 1 col / 1 row anyways.
.card {
grid-column: auto;
grid-row: auto;
}
❤ from south india.. I have learned so many frontend concepts . Because of you. Thanks a lot 🙏
Getting back into front end development. Grid and flex is a game changer. I remember doing table layouts in dreamweaver when I first started and then floats. I got so good with floats that I get an urge to use them again but have to catch myself and use grid and flex since they are so much cleaner and powerful. No more hacks to align stuff 🤭
This as well as flexbox are so important! Can't recommend enough - gets you so far in terms of layouts. Thanks Brad 💪
Shut up
Thank you so much for this Brad! I found you last year came back looking for ya. I'm self learning through Codecademy and I'm so glad I came to watch both your flexbox and grid tutorials. They're amazing! You're a great teacher and a great inspiration. You give me so much hope! Will definitely come back to do projects with you and to keep learning from you. Stay blessed!
This is one of the first times I've genuinely preferred to learn over doing something else. Your tutorials are great. I've only been following them for about a week now and I have a better grip on HTML & CSS then I did from secondary school & college.
Brad this is awesome and I loved every moment of it. You make it really seem easy and will certainly put this tutorial into good use. Much appreciation from Kenya!
Excellent as usual. Appreciated the notion that the grid is useful for page layout and that flex (and grid) can then be use to organize elements within the grid area.
I thank you this! Recently, I noticed how much I sucked at CSS and thought of CSS Grids as the first thing to learn.
The way you organize the topics is awesome and I am into web development because of you making such informative content.
Brad, I don't have words to thank you.
You are really a great mentor for countless learners like me.
You are awesome man. God bless you.
Keep posting. Keep teaching.
Love from INDIA.
❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️
You mentioned that you like to do everything from start, not copy paste.
That is only one of your strengths in teaching, and what makes your tutorials stand out. Thank you
this guy is really good this is a video you have to watch
A double thank you for the great instruction, from those learning to use grid and VS code at the same time. You are basically covering both. Your pace is quick, but that's why they invented the pause button!
I always come to your crash courses and udemy courses to fresh'n up on what is going on in the world of JS/CSS, etc. We tend to get stale working on the same stuff day in and day out, so it makes my brain start functioning again.
Thank you! The project at the end actually made it stick more.
You are the best web dev I have seen so far, great work and you’ve also help so many beginner on this channel of yours thanks u traversy media
Terrific tutorial, clear concise and very easy to follow. Not an easy thing to pull off. Many thanks indeed.
Excellent video! This was the first one I watched where I really understood Grid. Thank you so much :)
Brad, I've dabbled with html since '97. I tables was fun @ 22:00. Grid reminds me of tables a lot.
Trying to round up my css this week so I can head to js. Thanks for this, it's really helped me hasten up.
First time to fully understand css grid, Super!
Thank you . I have learnt so much from watching your tutorials. I more skill added to resume.
Hi Brad! Just to let you know, I became a professional developer recently and I wanted to thank you because with your videos my path was much easier. So that's it, thank you so much for your kindness to share!
Hi.... how did you do that?
I'd love to become a professional developer too! I've been "playing" with HTML and CSS since 2012.... any advice would be greatly appreciated 🙏
coding along with brad always seems easy for me and my confidence level is way up. The problem starts when I code on my own and everything gets messed up. i dont know what to do man! if anyone of you is intresten in becoming my partner in web dev, your welcome. html, css and i started javscript now
God bless you for showing the intricate parts as well, it's been around 10 years since the last time I handled web development, nowadays I don't remember even the smallest thing haha.. good vid!
I stopped doing websites for 6 years. Recently came back and was like: what??? ... Reading fast all entries on MDN CSS, but your flex & grid - crash course - helped me understand these concepts the most. JS and HTML5 changed a lot too. But am fine with those now (except Promises; which I don't need yet.).
I am your fans.... You are great in teaching... Briefly.. And very generous
Thank you!! One of the best tutorials i have seen on css grid .
Thanks again Brad. I'm preparing a plan to work with first nation youth keen on displaying their origins and this should be a manageable method.
Sir, I can't thank you enough. Your channel is treasure.
I always loved your teaching style your my goto for any JS framework, library, html css crashcourse etc..Thanks brad please keep doing what your doing love from india.
I've been waiting for so long 😩
Great tutorial. Clear, organized, and totally professional.
That was super helpful. Better than most vids I've seen in explanation.
Great tutorial Brad, I learn a lot from your channel and now i survive coding journey from giving up way in last couple of years back.🏋♀
was waiting from yesterday. yahooooooo you uploaded 😁😁😍
I'm a testimony of Brad's awesome css grid courses. Thanks for sharing another awesome tutorial, Brad. ✨✨
This was an excellent lesson, very good pacing and explanations. I love that you showed the incorporation of Flexbox in the real world example. As a Flexbox fanboy, I do appreciate the ease of Grid and the additional layout css properties. I will have to go ahead and give it a go! Thank you!
Will definately start watching Trav again as a supplement to my full stack studies...Currently doing node.js,python,php,and SQL!
Another fantastic video, I find your teaching style to be absolutely perfectly suited to how I like to learn. Thanks again 👍
Great video, followed through till the end and the good thing is I really got something out of it
Thankyou for the free course. Really helped learning CSS GRID.
Just Wow.To The Point Content.
Making Complex topics easy . Thanks
this was a masterpiece of a tutorial for css grid.
Thank you Brad for another amazing educational tutorial. This help me understand my css grid assignment so much better
you explained things so clearly 🙂🙂
i mean you got almost 2 million subs so its pretty obvious but still i will say that your content is the best....
Great lesson. Thank you very much
hey Brad, thanks alot for your hardwork and generous spirit.
You are the best teacher in the world ! no doubt !
Thank you for taking out time to help me with this vital piece of information.