Learn CSS Grid in 20 Minutes

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

КОМЕНТАРІ • 712

  • @WebDevSimplified
    @WebDevSimplified  6 років тому +120

    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 2 роки тому

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

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

      @@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 4 роки тому +331

    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!

  • @sonotsoma
    @sonotsoma 4 роки тому +144

    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

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

    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.
    👍🏽👍🏽👍🏽👍🏽👍🏽👍🏽

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

    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.

  • @amazing-ek2uo
    @amazing-ek2uo 2 роки тому +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.

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

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

  • @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.

  • @LeSaboteur3981
    @LeSaboteur3981 4 роки тому +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!

  • @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!!!

  • @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!

  • @ladannazary5546
    @ladannazary5546 3 роки тому +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!!

  • @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 .

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

    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.

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

    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. ❤

  • @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!

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

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

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

    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 роки тому +15

      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 3 роки тому +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 3 роки тому

      Let's see your videos then DORK.

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

      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 3 роки тому

      @@caroltheman98 where is this particulat stylesheet?

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

    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!

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

    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 :)

  • @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!.

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

    In the first 30 seconds, all my questions were answered, you are doing God's work.

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

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

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

    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 Рік тому

      @@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.

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

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

  • @andreranulfo-dev8607
    @andreranulfo-dev8607 29 днів тому

    I remmember this channel had just a few subscribers... So cool to see how it became this huge success.

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

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

  • @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 🙏🏼🤙🏼

  • @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!!!

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

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

  • @osamashehab463
    @osamashehab463 2 роки тому +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

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

    Thanks!

  • @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.

  • @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!

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

    Thanks

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

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

  • @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.

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

    not boring and very impactful. my fave webdev youtuber🥰

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

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

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

    One of the best tutorials on the CSS Grids

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

    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

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

    i swear it is the best grid explanation video for me

  • @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 🍻

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

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

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

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

  • @harag9
    @harag9 5 років тому

    Wow CSS has changed quite a bit, used to work with it 15 years ago and not touched it for a long time. You can do so much more now with it. Great video!

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

      CSS is amazing now. It used to be a pain to do anything with tables/floats, but now there is flex and grid which make layouts fun to make.

  • @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!

  • @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.

  • @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!

  • @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

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

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

  • @AlexTechie
    @AlexTechie 6 років тому +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  6 років тому +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 6 років тому +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  6 років тому +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 6 років тому +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!

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

    Best explanation of all videos!!!! Finally 😭

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

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

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

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

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

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

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

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

  • @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!

  • @BigSmoke-r9w
    @BigSmoke-r9w Рік тому

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

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

    thanks very much on this 20 minutes important CSS Grid lecture.

  • @cascee
    @cascee 5 років тому +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  5 років тому +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💯

  • @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.

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

    Such a valuable video on grids

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

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

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

    Thank you! This helped me solve in 5 minutes something I've been spending a whole day on. LOL Great video.

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

    Thanks a lot, sir, I was confused for almost a week but now I am very confident really thanks a lot.🙏

  • @albertt755
    @albertt755 28 днів тому

    I study CSS Grid on TOP, and this video is a good supplement.

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

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

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

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

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

    I love the pace of this dude

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

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

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

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

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

    From India Very Clear Explanation

  • @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.

  • @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.

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

    At 8:00 the grid-row-gap property is obsolete and instead use row-grap, this is the same for column-grap as well and grid-gap is just gap property

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

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

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

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

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

    Great video!
    would be nice to see a practical example of creating a simple responsive web page layout.
    For instance, how to create 2 columns layout for desktop and 1 column for mobile? You still need to write media query?
    And how to auto-fit number of columns based on the screen size without specifying number of columns?
    By using "grid-auto-columns: auto; " or "grid-template-columns: auto;"? Thanks!

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

    I'm a Bricks user so wanted to learn Grid. Just found your video. Very, very helpful and very well presented. Thanks. PS. You could get a lot of views with some Bricks tutorials!

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

    5:48 7:50 8:04 8:24 8:44 grid-template-area

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

    11:56 how are columns divided? Is it according to the items or gaps? Do the numbers mean grid lines or columns?

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

    Incredibly simple explanations with nice examples! Great tutorial!

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

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

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

    so straightforward and approachable

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

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

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

    This channel is simply amazing!

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

    Super useful tutorial. I subscribed immediately. The lectures are simply explained and easy to listen and understand. Happy to find this channel. :)

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

    this guy is insanely good at this.

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

    -Travesty Media
    -Academic
    And
    -Web Dev Simplified are all my goto tuts.

  • @SpiritualFacts
    @SpiritualFacts 5 років тому

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

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

    thank you for this. solved my frontendmentor assignment.

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

    Thank you so much for this one, best explanation of css grid I've heard!

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

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

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

    this dude is effortlessly magical

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

    That was the best explanation on this that I've seen and I understand it much better now! Thank you!

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

    Very helpful, loving these tutorials!

  • @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.

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

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