Learn CSS Grid in 20 Minutes

Поділитися
Вставка
  • Опубліковано 21 вер 2024

КОМЕНТАРІ • 706

  • @WebDevSimplified
    @WebDevSimplified  5 років тому +118

    If you haven't already, make sure to checkout my Flexbox tutorial. It will make following along with this video much easier.
    ua-cam.com/video/fYq5PXgSsbE/v-deo.html

    • @emmanuelsofuwa280
      @emmanuelsofuwa280 2 роки тому

      Your tutorials are so helpful, thank you for simplifying the web no pun intended.

    • @dianale5218
      @dianale5218 Рік тому

      where are you writing the code? also how do you put this website on the web?

    • @bobby3208
      @bobby3208 Рік тому

      @@dianale5218 He's writing the code inside software called VSCode and using an extension called Live Server or running a http server with python.

  • @sandyjameslord
    @sandyjameslord 3 роки тому +323

    Excellent advice at 17:47 :"Flexbox and grid were designed so they would work amazingly together, and using flexbox items inside of your grid containers is one of the best ways to lay out a site." Thanks for your examples and your expert advice. Great work Kyle.

    • @worldclasscode1847
      @worldclasscode1847 2 роки тому +3

      Are you sure it's good to place flexbox inside of grid? Why not flexbox in flexbox?

    • @dokedoke0426
      @dokedoke0426 2 роки тому +5

      @@worldclasscode1847 Cuz it takes up a lot more containers, css selectors and also a lote more repeated properties, IMO.

    • @zombiefacesupreme
      @zombiefacesupreme 2 роки тому +5

      @@dokedoke0426 yeah, it's pretty obvious. If you have four columns and four rows, that's one grid vs. four flexbox containers, etc.

    • @nikhilsinha2191
      @nikhilsinha2191 2 роки тому +1

      @@zombiefacesupreme its 5 the i guess you have to put the other 4 flex box in a single flex box as well for easier layout

    • @Tenchi707
      @Tenchi707 Рік тому +1

      if you are here, I beg you! can you explain me how as soon as he adds a new div, there's already color and text inside that div but he hasn't written any text in the main html file, how is this happening? and why is he using two css files? I understand the styles.css but what's the other background_styles.css doing? I don't understand, please explain!

  • @ChantingInTheDark
    @ChantingInTheDark Рік тому +36

    For those wanting to know how the DIVs are auto-numbered, it's these styles which are in the background_styles.css file (which isn't shown in the video but is available in the CodePen example)
    .grid-item::before {
    content: 'Grid Item';
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    top: 10px;
    left: 15px;
    }
    .grid-item::after {
    position: absolute;
    font-size: 18px;
    top: 10px;
    right: 15px;
    font-weight: bold;
    }
    .grid-item-1::after {
    content: '1';
    }

    .grid-item-2::after {
    content: '2';
    }
    Etc.

  • @sonotsoma
    @sonotsoma 3 роки тому +139

    The amount of extremely useful information you always manage to squeeze into such a small amount of time is amazing! Thank you!

    • @rnater7145
      @rnater7145 2 роки тому +1

      It's lean and healthy webdev "food" - no fillers, no crap. UA-cam needs a tip me $5 button!

    • @Tenchi707
      @Tenchi707 Рік тому

      if you are here, I beg you! can you explain me how as soon as he adds a new div, there's already color and text inside that div but he hasn't written any text in the main html file, how is this happening? and why is he using two css files? I understand the styles.css but what's the other background_styles.css doing? I don't understand, please explain!

    • @Islandstone89
      @Islandstone89 Рік тому

      ​@@Tenchi707I assume the background color and the numbers are coming from the background_styles.css

  • @zombiefacesupreme
    @zombiefacesupreme 2 роки тому +8

    Putting in grid-gap before explaining how the column-end count works was a brilliant move because it really helped illustrate how that was included in the count. What a great video!

  • @amazing-ek2uo
    @amazing-ek2uo Рік тому +10

    I have watched both flexbox and grid from your channel. Easy to understand, very clear and not at all verbose. Thank you bro for making me love with css.

  • @protical261
    @protical261 4 роки тому +54

    This was by far the best explanation on using css grids I have spent 5 hours+ looking for a video like this. Keep up the great work this is amazing!

    • @AndrewTSq
      @AndrewTSq 3 роки тому +2

      same here. so many examples that did not work, or overcomplicated it by showing "how to do grids by writing a raytracing animation at the same time" instead of just showin the basics. This tutorial was the best and most informative.

  • @tuantranluuquoc2910
    @tuantranluuquoc2910 2 роки тому +7

    what truly sets your tutorial apart from other coding tutorial is the pace. Yours is not too fast, or too slow, just the right amount of pace to attracts learners' attention, but not to much so that you won't scare learners away. Nice tutorial, brother!!!

  • @GregDowns
    @GregDowns 3 роки тому +81

    Beginners will be in confusion at 2:45 with you glossing over how the starting boxes were styled. I watched this video when I was starting out and I didn't know you'd created a separate css sheet for the visual styling. I thought I could follow along as-is and could never work out why I didn't have any blue boxes. In my naivete I thought that's what grid was supposed to do and was worried that mine wasn't! Now I come back with some knowledge I see that this ISN'T a beginner video. Great instruction otherwise. We need plenty more post-beginner/intermediate stuff.

    • @caroltheman98
      @caroltheman98 3 роки тому +14

      This confused me too, but I saw that he had linked the background.css stylesheet to the document after reading your comment. Thought I'd leave a reply so people will know what's up if they get stuck

    • @dannyr2976
      @dannyr2976 2 роки тому +2

      I thought the exact same thing. I saw a linked 'style.css' file but no parameters were included so still confused as where that styling came from.

    • @solarsequitor7374
      @solarsequitor7374 2 роки тому

      Let's see your videos then DORK.

    • @FreezeMageZ
      @FreezeMageZ 2 роки тому

      Hi, may I know what is the css content in background.css that generate the box with the numbers generated accordingly when new divs were made?

    • @babinio7458
      @babinio7458 2 роки тому

      @@caroltheman98 where is this particulat stylesheet?

  • @LeSaboteur3981
    @LeSaboteur3981 3 роки тому +6

    My professor explained this so bad in two hours and I didn't had a clue what he was talking about.. after 20min watching you, it feels natural and easy! Thanks!

  • @nigelnovak3096
    @nigelnovak3096 4 роки тому +55

    Hey Kyle, so glad I found your channel. The explanation of grid is amazing! Clear, concise and fast. Love your work. Big thanks!

    • @Tenchi707
      @Tenchi707 Рік тому

      if you are here, I beg you! can you explain me how as soon as he adds a new div, there's already color and text inside that div but he hasn't written any text in the main html file, how is this happening? and why is he using two css files? I understand the styles.css but what's the other background_styles.css doing? I don't understand, please explain!

    • @iraklis178
      @iraklis178 Рік тому

      @@Tenchi707 In the other file he has put the background color .New divs get the color by heritage , as some properties get passed down .

  • @ladannazary5546
    @ladannazary5546 2 роки тому +8

    I looked at MANY videos on Udemy and on UA-cam to learn about css grids. This one was the best one I've found. Explains the concepts in a way that are so easy to follow and understand. Thank you!!

  • @alexisgono1729
    @alexisgono1729 11 місяців тому +2

    THANK YOU!!! 😭
    Ive been struggling for weeks to make a site work hat has both columns and rows and have watched countless flexbox videos trying to make that alone work.
    You dont know what you dont know until you know🤷‍♀
    This video has just unlocked a higher level for me.
    Truly appreciate your content.
    Keep up the good work.
    👍🏽👍🏽👍🏽👍🏽👍🏽👍🏽

  • @AitorMorgado
    @AitorMorgado 4 роки тому +20

    One of the best coding tutorials out there. Amazing job, my friend.

  • @achengster4
    @achengster4 4 роки тому +249

    I always look for Kyle when I want to learn about coding

    • @briandacallos4234
      @briandacallos4234 4 роки тому +1

      me too

    • @paulbrown6792
      @paulbrown6792 4 роки тому +8

      @@briandacallos4234 let me know if you find him ;) lol

    • @briandacallos4234
      @briandacallos4234 4 роки тому +4

      @@paulbrown6792 Just search "Web Dev Simplified" and you're good to go :) Sarcasm attack ? Good luck old man

    • @user-og9nl5mt1b
      @user-og9nl5mt1b 3 роки тому +4

      @@briandacallos4234 let the man have some fun , jackass

    • @rizla8602
      @rizla8602 3 роки тому

      @@paulbrown6792 hah, good one :)

  • @parthdeshwal4419
    @parthdeshwal4419 5 місяців тому +1

    this guy made this video and was able to explain the topics better than most youtubers.... thanks bud

  • @bravo1oh1
    @bravo1oh1 2 роки тому +7

    i started coding 3 months ago as a 41 year old.. i have interviews lined up as a react js dev for companies like tesla and apple.. just know these (HTML, CSS, JS, REACT) and know best practices.. u can get 150K to 250K.. 100% REMOTE

    • @85MA
      @85MA 3 місяці тому +2

      I hv the same journey as yours, I'm also in my 40's and started coding 3 Months ago. I just reached middle of css untill now it's going smooth but a bit nervous about JS although didn't started yet but heard-of that it a proper programing lang and is a bit tough. As a complete beginner with finance background jumped in coding feeling pressure of JS. let see what it brings

  • @jovannovakovic5975
    @jovannovakovic5975 5 років тому +26

    And that's exactly what we want! 😊
    Awesome and simplified as always.
    Great job, Kyle!

    • @WebDevSimplified
      @WebDevSimplified  5 років тому +3

      Thank you! I am really glad you enjoyed the video.

    • @Tenchi707
      @Tenchi707 Рік тому

      if you are here, I beg you! can you explain me how as soon as he adds a new div, there's already color and text inside that div but he hasn't written any text in the main html file, how is this happening? and why is he using two css files? I understand the styles.css but what's the other background_styles.css doing? I don't understand, please explain!

    • @danlearnstoplay2737
      @danlearnstoplay2737 11 місяців тому

      @@Tenchi707 Hei man, i just started to learn html/css like a month ago but I think I can help with this one, basically, as you mentioned, he is using 2 css files. one is the one we see in the video to explain the grid , and the second one that is not showing, includes the css code to style the divs ( color background etc ). I'm guessing the reason for doing this is simply that the css file used for the tutorial is fresh without any clutter from the color / background colors attributes.

  • @ruthwik8772
    @ruthwik8772 4 роки тому +30

    for background_styles.css file, you could use something like this
    body
    {
    color: gray;
    }
    .header
    {
    text-align: center;
    }
    .grid-container
    {
    display: grid;
    }
    .grid-item
    {
    min-height: 100px;
    border-width: 10px;
    border-style: solid;
    border-color: black;
    background-color: skyblue;
    }

    • @tommieirl1
      @tommieirl1 Рік тому +4

      I love you

    • @313PH4N7
      @313PH4N7 Рік тому +2

      Instead of typing all of these:
      border-width: 10px;
      border-style: solid;
      border-color: black;
      You could write:
      border: 10px solid #000;
      All the best.

    • @Tenchi707
      @Tenchi707 Рік тому

      if you are here, I beg you! can you explain me how as soon as he adds a new div, there's already color and text inside that div and the text even says different numbers for different items but he hasn't written any text in the main html file, how is this happening? and why is he using two css files? I understand the styles.css but what's the other background_styles.css doing? I don't understand, please explain!

    • @Novodip
      @Novodip Рік тому

      @@Tenchi707 The background styles css is for all the colors in the div

    • @barnabassolomon1629
      @barnabassolomon1629 Рік тому

      bless your sould and heart

  • @Coda_n
    @Coda_n 3 роки тому +428

    The 77 dislikes are from those professors who caused us to come here.

  • @semaytube370
    @semaytube370 Рік тому +4

    You've got a great talent bro, not just your codding skills and knowledge but also your easy-to-understand way of teaching. I've watched a couple of your videos and I found them really helpful. Thank you😍 so much for sharing your talent with us at no cost.

  • @Coronerlex
    @Coronerlex 2 роки тому +1

    You have no idea how much this video helped. I was trying to line up 5 tiles of images with links on my website for a class project. I couldn't get them to work then I found your video! By the end I had them laid out EXACTLY how I wanted. I wish I would've found this hours again. Thank you so much!

  • @zeppelin0110
    @zeppelin0110 2 роки тому +4

    This is just beautiful. In just 10 minutes, I was able to learn enough for my immediate purposes. Thanks.

  • @olaeniola3810
    @olaeniola3810 3 роки тому +4

    This gentleman is really good and makes complex topics so easy. I wanna be as good as you someday. I know it will take a lot of practice, practice, and practice but am ready for it this time around and I won't stop until I become an expert web developer. Thank you for inspiring people like me who have almost given up. Thanks, once again!.

  • @sophlovesmikshakes
    @sophlovesmikshakes 3 місяці тому

    I have been searching for so many tutorials, and this 5 year old one is the only one that actually helped me. Thank you so much!

  • @Markus-iq4sm
    @Markus-iq4sm Рік тому

    One of the best tutorials on the CSS Grids

  • @abikuneebus
    @abikuneebus Рік тому +1

    you're a hero, dude. completed freeCodeCamp's Responsive Web Design course, but somehow flex and grid didn't click until I watched your 15 and 20 minute courses.

  • @agungaurelius1680
    @agungaurelius1680 Рік тому

    This man is truly genius. He explains with his simplified terms. Good job!

  • @sohammondal578
    @sohammondal578 2 місяці тому

    I was trying to learn about CSS Grids and a bunch of videos came up on YT search. But I wanted to give your video a try first because I have always enjoyed your other videos. Oh boy, this tutorial is no different. Simple explanation in such a short time and I'm so much more confident now. ❤

  • @user-fs2zt4tk6q
    @user-fs2zt4tk6q 3 роки тому

    The best explaination of css grid on YT, came here after getting confused by other vids. Thanks for another quality vid 🙏🏼🤙🏼

  • @sharriceowens913
    @sharriceowens913 3 роки тому +3

    u have a fucking gift for teaching please never stop...cause i never wanna stop learning

  • @Greg4510able
    @Greg4510able 5 місяців тому

    Kyle, you continue to be the man. Keep up the great work. Thanks for the knowledge, God bless you.

  • @osamashehab463
    @osamashehab463 Рік тому +3

    I haven't watched the video yet but I would like to thank you for your amazing videos including the Calculator and the clock

  • @WebDeveloper682
    @WebDeveloper682 Рік тому

    i swear it is the best grid explanation video for me

  • @mattwood2002
    @mattwood2002 2 роки тому

    I love the pace of this dude

  • @reflectionethio9662
    @reflectionethio9662 2 роки тому

    This is the most short but brief explanation, thank you kyle

  • @SHiniGAMi_007
    @SHiniGAMi_007 Рік тому

    One of the best channels out there
    Thank you for this video

  • @jeyzzz696
    @jeyzzz696 4 роки тому +5

    its my first time watching this and im not getting the idea right away on the advanced concepts (grid-column). ill try to watch a few more times. wish me luck.

  • @dorin7022
    @dorin7022 3 роки тому +1

    I love you man. Your ability to teach is incredible.

  • @petarkolev6928
    @petarkolev6928 3 роки тому +3

    Incredibly simple explanations with nice examples! Great tutorial!

  • @anthonylatorre6592
    @anthonylatorre6592 Рік тому

    I've been struggling to understand css grid recently but this video really helped simplify it. Thank you for your help!

  • @ampsassociation6003
    @ampsassociation6003 5 років тому +4

    Very helpful, loving these tutorials!

  • @XL-Freak
    @XL-Freak Рік тому

    Hi Kyle, being new to css, with only minimal html knowledge, I am somewhat overwhelmed by all this new technology. One thing I've been researching recently is a way to create tables without using html TABLE tags. I figured the answer had to be flex or grid, but this is the first of several, let me stress SEVERAL, video's I've watched that actually answered this question for me, as well as differentiating between the two! Now it looks so amazingly simple! Thank you so much!!!

  • @JoaoPaulo-ox6pr
    @JoaoPaulo-ox6pr 2 роки тому

    This channel is simply amazing!

  • @rohannicholls
    @rohannicholls 4 роки тому +17

    Excellent tutorial. Thanks.
    I noticed that 'grid-row-gap' and 'grid-column-gap' are deprecated and being replaced by dropping the grid part.
    grid-row-gap => row-gap
    grid-column-gap => column-gap

    • @ronarmengol1677
      @ronarmengol1677 3 роки тому

      thanks for the update

    • @mootssss
      @mootssss 3 роки тому

      I figured they must have gotten deprecated, thanks for this

  • @BigSmoke-r9w
    @BigSmoke-r9w 9 місяців тому

    this guy is the true OG! Thanks alot for this content bro

  • @zedleclair6638
    @zedleclair6638 4 роки тому +2

    Just went out of my flexbox cave. Wow, what a discovery, I'll definitely use them

  • @mysticlunala8020
    @mysticlunala8020 3 роки тому +1

    You probably see a line cutting on grid-column and row gap property, that's because it has been changed to the following: Both of them worked, even though I heard it has been changed.
    gap instead of grid-gap
    row-gap instead of grid-row-gap,
    column-gap instead of grid-column-gap
    Both of these works, even though I heard it has been changed.

  • @BlackDev
    @BlackDev 2 роки тому

    watching this before i do my course with kevin on scrimba so helpful love you two

  • @SpiritualFacts
    @SpiritualFacts 4 роки тому

    really awesome and in depth, better then other tutorials in UA-cam

  • @hsiang-yehhwang2625
    @hsiang-yehhwang2625 2 роки тому

    This tutorial is amazing!! clear!! Thanks!!

  • @keithgrill3884
    @keithgrill3884 Рік тому

    Dropping a line because I've watched a few of your videos (snake JS, pong JS, and this one) and this is great content. Thank you!

  • @alekdemj
    @alekdemj 3 місяці тому

    Kyle, brilliant explanation as usually!

  • @macrooooo__
    @macrooooo__ Рік тому

    thank you for this. solved my frontendmentor assignment.

  • @farn451
    @farn451 4 роки тому

    dude, best description of how to use it i've seen so far. will be checking out your other vids to brush up on my front end chops.

  • @AlexTechie
    @AlexTechie 5 років тому +9

    Great video, although I found it to be a bit confusing towards the end where the divs change width/height. Thankfully, you explained it well enough that you can fall back on that instead of the visualization. Anyway, I have a tip for people learning Grid:
    Firefox's built-in dev tools has support for Grid. To find it, just right click > inspect element > Layout tab. If the site uses Grid, an option will appear for it, so just click the checkmark for the grid in the Layout container and you'll see it displayed. There's also a few other options, like showing the tracks and individual names of the Grid items. As a beginner, this helped me out immensely in debugging why my Grids weren't working as expected.

    • @WebDevSimplified
      @WebDevSimplified  5 років тому +2

      Thanks for the feedback. Also, that is an amazing tip about the Firefox browser. I have always used Chrome's developer tools, which have some support for grid, but it sounds like Firefox is even better.

    • @AlexTechie
      @AlexTechie 5 років тому +2

      @@WebDevSimplified Personally, I love Firefox's dev tools. They've got built-in JSON viewer for both the dev tools and the browser. Also, they have a browser made just for developers. I haven't downloaded it, yet, but it looks amazing and people who have DL'd it say it's great. Here's a quick link: www.mozilla.org/en-US/firefox/developer/

    • @WebDevSimplified
      @WebDevSimplified  5 років тому +2

      @@AlexTechie I may have to check that out. I haven't used Firefox much, but when I have used it I enjoyed it. I'm just so used to Chrome it is tough to switch.

    • @AlexTechie
      @AlexTechie 5 років тому +1

      ​@@WebDevSimplified Oh, for sure. Always stick to what you enjoy using. 👍

    • @Tenchi707
      @Tenchi707 Рік тому

      if you are here, I beg you! can you explain me how as soon as he adds a new div, there's already color and text inside that div but he hasn't written any text in the main html file, how is this happening? and why is he using two css files? I understand the styles.css but what's the other background_styles.css doing? I don't understand, please explain!

  • @stormybear4986
    @stormybear4986 Рік тому

    Kyle, my good man, you have a natural knack for teaching. Your videos are great and you are quite handsome to boot. Big fan here.

  • @iamtharunraj
    @iamtharunraj Рік тому

    Thanks A lot Kyle. I was always stuck at grid-template-area, but this video helped me to learn it too. You really simplified everything. Good job!

  • @phucphamhuu4809
    @phucphamhuu4809 2 роки тому

    so straightforward and approachable

  • @cascee
    @cascee 4 роки тому +23

    can i just say...beauty and brains! thanks for your "to the point" explanation! This stuff def takes practice but you did great explaining everything in a short period of time...def better than my teacher haha

    • @WebDevSimplified
      @WebDevSimplified  4 роки тому +8

      Thanks! I'm really glad I could help! I try to maximize the amount of learning I can squeeze into each minute so my videos don't drag on and on.

    • @katielowen
      @katielowen 3 роки тому +1

      Down horrendous for Web Devs💯

  • @otabekxudoyberdiyev6126
    @otabekxudoyberdiyev6126 6 місяців тому

    Just super Css Grid tutorial man!

  • @verakorchemnaya3971
    @verakorchemnaya3971 2 роки тому

    Very good video! Thank you for talking about justify-content / align-content and justify-items / align-items. Made things very clear in my mind!

  • @niloofar9113
    @niloofar9113 3 роки тому +2

    Best explanation of all videos!!!! Finally 😭

  • @calmingcoffeerain6217
    @calmingcoffeerain6217 8 місяців тому

    You are amazing man! best Ive seen. Thanks so much!

  • @dragonniteIV
    @dragonniteIV Рік тому

    This man right here explains stuff like it's very easy. I always wonder why i found things difficult after hearing your explanation! Well done sir!

  • @minphonemyat2351
    @minphonemyat2351 3 роки тому

    your voice is so clear and your explanations are effective.
    thank you very much

  • @adekunlefhunkie2170
    @adekunlefhunkie2170 Рік тому

    not boring and very impactful. my fave webdev youtuber🥰

  • @FredericGuimont
    @FredericGuimont 3 роки тому +3

    Great summary, easy to grasp and short enough to fit in my schedule. Thanks!

  • @value_investing_indonesia
    @value_investing_indonesia 4 роки тому +1

    omg you are the only person that i understand when listening css Thank you

  • @xugestory
    @xugestory 5 років тому +1

    Yout video are awesome, Love it so much. At first I am confuse between flexbox and css grid, but after watching your video, everything is cleared!

  • @akalrove4834
    @akalrove4834 3 роки тому

    I was all confused about grid-column till i saw this video. Great stuff!

  • @bufpalful
    @bufpalful 2 роки тому

    Understood in 20min. Thank you

  • @michaelsvoboda1024
    @michaelsvoboda1024 4 роки тому +1

    This is PRECISELY what I was looking for, thanks a lot.

  • @rustndust818
    @rustndust818 3 роки тому

    Absolutely fantastic!! Using Grid with Flexbox is just amazing!

  • @fredriksundgren2326
    @fredriksundgren2326 3 роки тому

    Thank you so much , I have banged my head for a few days not undrstanding grid.
    This video is really good.

  • @michaelanthony4750
    @michaelanthony4750 2 роки тому

    straight and to the point

  • @ruthpol
    @ruthpol Рік тому

    Fast and precise with visual examples. The exact way a video on css styling can excel. Thanks!

  • @diphlexusmngadi2926
    @diphlexusmngadi2926 4 роки тому +1

    Another great video. You need to do more on marketing...more people are looking for just your kind of videos and just haven't found you yet. Awesome stuff.

  • @dekenparker-lynch1630
    @dekenparker-lynch1630 2 роки тому

    Maaaaan this was right on point! Appreciate it !

  • @neevbadu3611
    @neevbadu3611 Рік тому

    Thanks alot you made grid so much clear...

  • @johmcg64
    @johmcg64 3 роки тому

    You are an excellent teacher. I need to get better at it so I can follow along at you speed.

  • @thequang9234
    @thequang9234 2 роки тому

    this dude is effortlessly magical

  • @himanshu2149
    @himanshu2149 3 місяці тому

    Bro is perfectly delivering 1 hour long information in 18 minutes!

  • @mohamedelgazar5283
    @mohamedelgazar5283 Рік тому

    thank you very much for such demenstrative break down it's amazing what you can explain in 20 mins.

  • @kopilkaiser8991
    @kopilkaiser8991 2 місяці тому

    Brilliant tutorial! Lovedit

  • @helanacampling1922
    @helanacampling1922 4 роки тому +29

    omg that is soo easy i thought the css grid was really complicated

    • @mudyeet_
      @mudyeet_ 4 роки тому +9

      It would have been if you tried to learn it from somewhere else, trust me, been there done that.

  • @m00mai
    @m00mai 2 роки тому

    you save me so much time!! good stuff !!

  • @markenyou1
    @markenyou1 5 років тому +3

    This video is awesome! Great job!

  • @singhravjot
    @singhravjot 2 роки тому

    Great Explanation! Thanks

  • @DevlogBill
    @DevlogBill 2 роки тому +3

    Wow, I am impressed! Grid is so much more useful in comparison to flexbox. I am fairly new to web development. I find that grid is actually more intuitive in designing your web page than flexbox. Is my judgement flawed or would you have a different perspective on this subject matter? Thank you for the excellent video, you hit on the bullet points without overly elaborating on the subject.

  • @_.sunnyraj._
    @_.sunnyraj._ 4 роки тому

    You and Ed are the best explainers of these things

  • @RichardPetron
    @RichardPetron 2 роки тому

    This is as good as a tutorial gets, very impressive thank for this

  • @tyt9602
    @tyt9602 3 роки тому

    Admire you.Good guy ever.Thankful for every videos I had ever watched!

  • @JoshuaTMagee
    @JoshuaTMagee 4 роки тому +5

    How are you getting each div block's label name (e.g. "Grid Item 1") to show up in the browser? I don't see that in your HTML anywhere. Thanks!

  • @michaelmaldo7345
    @michaelmaldo7345 Рік тому

    really easy to follow -- good flow order of concepts!! thumbs up man!!

  • @anthonygreen2307
    @anthonygreen2307 2 роки тому

    this video helped me to understand once i took the time it take thanks.

  • @Sharky-c3z
    @Sharky-c3z Рік тому

    Bro your videos are gamechanger , I dont know how but my stupid mind get all the things that u say.

  • @kimjiyoung8655
    @kimjiyoung8655 2 роки тому +1

    Thank you so much. Great teacher!

  • @PainRUify
    @PainRUify 2 роки тому

    web dev simplified is a huge part on my growth as a developer. From when I was still a junior developer till now that Im a mid-level engineer 🍻

  • @spsmpssm238
    @spsmpssm238 2 роки тому

    From India Very Clear Explanation