Learn CSS Grid in 20 Minutes

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 มิ.ย. 2024
  • 🚨 IMPORTANT:
    Learn CSS Today Course: courses.webdevsimplified.com/...
    In this video we will cover everything you need to know about CSS grid in only 20 minutes. We will cover what grid is, how grid differs from flexbox, how grid works, and the different properties you can use to layout and style your grid containers and items. CSS grid is one of the most powerful layout tools ever added to CSS. It allows you to create dynamic, responsive, and complex layouts with very little code. We will be covering all of the terminology, by going through live examples of all the different grid properties.
    If there is anything you feel I missed in discussing grid, or anything about grid that confused you, please let me know in the comments below.
    Learn Flexbox in 15 Minutes:
    • Learn Flexbox in 15 Mi...
    CodePen for this Video:
    codepen.io/WebDevSimplified/p...
    Twitter:
    / devsimplified
    GitHub:
    github.com/WebDevSimplified
    CodePen:
    codepen.io/WebDevSimplified
    #CSSGrid #WebDevelopment #Programming

ความคิดเห็น • 702

  • @WebDevSimplified
    @WebDevSimplified  5 ปีที่แล้ว +115

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

    • @emmanuelsofuwa280
      @emmanuelsofuwa280 ปีที่แล้ว

      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 ปีที่แล้ว +312

    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 ปีที่แล้ว +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 ปีที่แล้ว +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!

  • @achengster4
    @achengster4 4 ปีที่แล้ว +248

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

    • @briandacallos4234
      @briandacallos4234 4 ปีที่แล้ว +1

      me too

    • @paulbrown6792
      @paulbrown6792 3 ปีที่แล้ว +8

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

    • @briandacallos4234
      @briandacallos4234 3 ปีที่แล้ว +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 :)

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

    • @eobardthawne6903
      @eobardthawne6903 10 หลายเดือนก่อน +1

      Thanks, was wondering the same.

    • @peterwoo2718
      @peterwoo2718 7 หลายเดือนก่อน +1

      this reply should be pinned

  • @GregDowns
    @GregDowns 2 ปีที่แล้ว +79

    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 2 ปีที่แล้ว +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?

  • @sonotsoma
    @sonotsoma 3 ปีที่แล้ว +136

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

  • @tuantranluuquoc2910
    @tuantranluuquoc2910 ปีที่แล้ว +6

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

  • @AitorMorgado
    @AitorMorgado 4 ปีที่แล้ว +20

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

  • @zombiefacesupreme
    @zombiefacesupreme ปีที่แล้ว +7

    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.

  • @sophlovesmikshakes
    @sophlovesmikshakes 8 วันที่ผ่านมา

    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!

  • @Coda_n
    @Coda_n 3 ปีที่แล้ว +414

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

  • @protical261
    @protical261 3 ปีที่แล้ว +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.

  • @parthdeshwal4419
    @parthdeshwal4419 2 หลายเดือนก่อน +1

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

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

  • @alexisgono1729
    @alexisgono1729 8 หลายเดือนก่อน +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.
    👍🏽👍🏽👍🏽👍🏽👍🏽👍🏽

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

  • @zeppelin0110
    @zeppelin0110 2 ปีที่แล้ว +4

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

  • @farn451
    @farn451 3 ปีที่แล้ว

    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.

  • @ladannazary5546
    @ladannazary5546 2 ปีที่แล้ว +8

    I looked at MANY videos on Udemy and on TH-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!!

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

  • @petarkolev6928
    @petarkolev6928 2 ปีที่แล้ว +3

    Incredibly simple explanations with nice examples! Great tutorial!

  • @FredericGuimont
    @FredericGuimont 3 ปีที่แล้ว +3

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

  • @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 8 หลายเดือนก่อน

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

  • @michaelsvoboda1024
    @michaelsvoboda1024 4 ปีที่แล้ว +1

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

  • @ruthpol
    @ruthpol ปีที่แล้ว

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

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

  • @rustndust818
    @rustndust818 3 ปีที่แล้ว

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

  • @ruthwik8772
    @ruthwik8772 3 ปีที่แล้ว +29

    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

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

  • @juliemassa6024
    @juliemassa6024 3 ปีที่แล้ว

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

  • @user-fs2zt4tk6q
    @user-fs2zt4tk6q 2 ปีที่แล้ว

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

  • @tagalismacherrifer7603
    @tagalismacherrifer7603 4 ปีที่แล้ว

    Oh thank you so much, this helps a lot... your videos becomes my reviewer and yes definitely "simplified"...
    You guys are awesome!

  • @SpiritualFacts
    @SpiritualFacts 4 ปีที่แล้ว

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

  • @slava_in3757
    @slava_in3757 3 ปีที่แล้ว

    Great tutorial. Very concise and informative, made great help for me. Thank you, Web Dev Simplified!

  • @jaydeepdas1408
    @jaydeepdas1408 4 ปีที่แล้ว

    Amazing explanation! Hats off to you Kyle, you have made my life easier. 😊

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

  • @codenamegrant
    @codenamegrant 4 ปีที่แล้ว

    Great video, thanks for explaining the difference between flexbox and CSS grid. It's really helpful.

  • @sohammondal578
    @sohammondal578 วันที่ผ่านมา

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

  • @anthonylatorre6592
    @anthonylatorre6592 ปีที่แล้ว

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

  • @fredriksundgren2326
    @fredriksundgren2326 3 ปีที่แล้ว

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

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

  • @laffinkippah
    @laffinkippah 3 ปีที่แล้ว

    Great content. Concise and comprehensive. Thank you!

  • @reflectionethio9662
    @reflectionethio9662 2 ปีที่แล้ว

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

  • @akalrove4834
    @akalrove4834 3 ปีที่แล้ว

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

  • @Cheesedipper32
    @Cheesedipper32 2 ปีที่แล้ว

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

  • @himanshu2149
    @himanshu2149 17 วันที่ผ่านมา

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

  • @CC-bm3wb
    @CC-bm3wb 2 ปีที่แล้ว

    Good tutorial, really helped me watching you do the examples in real time than just reading it!

  • @ampsassociation6003
    @ampsassociation6003 4 ปีที่แล้ว +4

    Very helpful, loving these tutorials!

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

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

  • @tyt9602
    @tyt9602 3 ปีที่แล้ว

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

  • @dorin7022
    @dorin7022 2 ปีที่แล้ว +1

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

  • @agungaurelius1680
    @agungaurelius1680 9 หลายเดือนก่อน

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

  • @Zen-lz1hc
    @Zen-lz1hc 2 ปีที่แล้ว

    Like :)
    Great!
    Much appreciated for putting this together in just 20min.
    You concentrated really well a lot of what CSS GRID is in a very short video. Really cool

  • @timobrien4190
    @timobrien4190 3 ปีที่แล้ว

    Wow this really made sense and helped. Can’t wait to apply!

  • @cosme2441
    @cosme2441 3 ปีที่แล้ว

    Thanks for the helpful content. Clear and concise!

  • @calmingcoffeerain6217
    @calmingcoffeerain6217 5 หลายเดือนก่อน

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

  • @XjafnerX
    @XjafnerX 4 ปีที่แล้ว

    best video i ve seen about grid, thank you so much

  • @aissaserrar3059
    @aissaserrar3059 5 ปีที่แล้ว +4

    thank you so much for this video, you and Dev Ed are the best

    • @WebDevSimplified
      @WebDevSimplified  4 ปีที่แล้ว +2

      You're welcome! I'm glad you enjoyed it.

  • @michaelmaldo7345
    @michaelmaldo7345 ปีที่แล้ว

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

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

  • @mohamedelgazar5283
    @mohamedelgazar5283 ปีที่แล้ว

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

  • @dragonniteIV
    @dragonniteIV 9 หลายเดือนก่อน

    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!

  • @Greg4510able
    @Greg4510able 3 หลายเดือนก่อน

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

  • @dianatodorova9799
    @dianatodorova9799 ปีที่แล้ว

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

  • @andresrosales3466
    @andresrosales3466 3 ปีที่แล้ว

    Best tutorial i've found for grid so far :)

  • @Markus-iq4sm
    @Markus-iq4sm ปีที่แล้ว

    One of the best tutorials on the CSS Grids

  • @sharriceowens913
    @sharriceowens913 3 ปีที่แล้ว +3

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

  • @quentalthermilus7199
    @quentalthermilus7199 4 ปีที่แล้ว

    Your videos are great. Very easy to understand and follow.

  • @leandrolobo
    @leandrolobo 3 ปีที่แล้ว

    Thanks! great tutorial, direct to the point.

  • @JoaoPaulo-ox6pr
    @JoaoPaulo-ox6pr 2 ปีที่แล้ว

    This channel is simply amazing!

  • @adekunlefhunkie2170
    @adekunlefhunkie2170 10 หลายเดือนก่อน

    not boring and very impactful. my fave webdev youtuber🥰

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

  • @nehakumar9889
    @nehakumar9889 4 ปีที่แล้ว

    Amazingly explained 🌼 Now building my final year project with your help 🌹

  • @jwilliams8210
    @jwilliams8210 2 ปีที่แล้ว

    Kyle, you explain things well. Thanks!

  • @javascript_developer
    @javascript_developer 3 ปีที่แล้ว

    Awesome grid-area and grid-template-area. thanks for the lovely video

  • @eborne66
    @eborne66 3 ปีที่แล้ว

    Thanks for your concise and comprehensive tutorials.

  • @markenyou1
    @markenyou1 5 ปีที่แล้ว +3

    This video is awesome! Great job!

  • @RichardPetron
    @RichardPetron ปีที่แล้ว

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

  • @zedleclair6638
    @zedleclair6638 3 ปีที่แล้ว +2

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

  • @SHiniGAMi_007
    @SHiniGAMi_007 11 หลายเดือนก่อน

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

  • @otabekxudoyberdiyev6126
    @otabekxudoyberdiyev6126 3 หลายเดือนก่อน

    Just super Css Grid tutorial man!

  • @johmcg64
    @johmcg64 3 ปีที่แล้ว

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

  • @igorkhomenko2508
    @igorkhomenko2508 3 ปีที่แล้ว

    Oh man, greetings from yucky 2021! Thanks a lot for the tut - I finally got to understand what those devs are friggin talking about :) And I am a designer :) Great job man, keep it up!

  • @user-kn4oi9oh4i
    @user-kn4oi9oh4i 6 หลายเดือนก่อน

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

  • @dekenparker-lynch1630
    @dekenparker-lynch1630 2 ปีที่แล้ว

    Maaaaan this was right on point! Appreciate it !

  • @alekdemj
    @alekdemj 20 วันที่ผ่านมา

    Kyle, brilliant explanation as usually!

  • @hsiang-yehhwang2625
    @hsiang-yehhwang2625 2 ปีที่แล้ว

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

  • @karentrevino6904
    @karentrevino6904 3 ปีที่แล้ว

    Impeccable teaching! Thanks for sharing your gift :)

  • @neon13x
    @neon13x 3 ปีที่แล้ว

    Your tutorials are exactly how we want it :)

  • @m00mai
    @m00mai 2 ปีที่แล้ว

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

  • @natanaelaitonean3867
    @natanaelaitonean3867 4 ปีที่แล้ว

    Great stuff, dude!

  • @alxcandraw
    @alxcandraw ปีที่แล้ว

    Really helpful man. Thank you!

  • @alexpopov5971
    @alexpopov5971 3 ปีที่แล้ว

    Really informational! Thank you!

  • @MayCodeGuide
    @MayCodeGuide ปีที่แล้ว

    great content, very informative thank you, keep on going!

  • @Sameera.
    @Sameera. 2 ปีที่แล้ว

    Love your content man Thank you very much

  • @minphonemyat2351
    @minphonemyat2351 3 ปีที่แล้ว

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

  • @AERNIGH
    @AERNIGH ปีที่แล้ว

    Wish I had seen this earlier, the video makes it so easy to understand.

  • @musicartschannel1096
    @musicartschannel1096 ปีที่แล้ว

    great video as always, good summary