Learn CSS Grid in 20 Minutes

Поделиться
HTML-код
  • Опубликовано: 24 ноя 2024

Комментарии • 710

  • @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.
    ruclips.net/video/fYq5PXgSsbE/видео.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 Год назад

      @@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 года назад +328

    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 Год назад +38

    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.

  • @bravo1oh1
    @bravo1oh1 2 года назад +8

    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 5 месяцев назад +3

      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

    • @Scarletthougts
      @Scarletthougts 14 дней назад

      this has given me a mental boost to keep on learning. thank you

  • @sonotsoma
    @sonotsoma 4 года назад +142

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

  • @parthdeshwal4419
    @parthdeshwal4419 7 месяцев назад +1

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

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

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

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

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

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

  • @ladannazary5546
    @ladannazary5546 3 года назад +8

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

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

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

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

  • @willw4096
    @willw4096 Год назад +1

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

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

  • @sohammondal578
    @sohammondal578 4 месяца назад

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

  • @andreranulfo-dev8607
    @andreranulfo-dev8607 День назад

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

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

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

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

  • @agungaurelius1680
    @agungaurelius1680 Год назад

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

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

  • @mischieflovesmikshakes
    @mischieflovesmikshakes 5 месяцев назад

    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!

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

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

  • @AitorMorgado
    @AitorMorgado 4 года назад +20

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

  • @albertt755
    @albertt755 14 часов назад

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

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

  • @gabrielburgos2533
    @gabrielburgos2533 Год назад

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

  • @zeppelin0110
    @zeppelin0110 2 года назад +4

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

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

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

  • @sharriceowens913
    @sharriceowens913 3 года назад +3

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

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

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

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

  • @Coda_n
    @Coda_n 3 года назад +428

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

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

  • @anthonylatorre6592
    @anthonylatorre6592 Год назад

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

  • @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 Год назад

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

  • @WebDeveloper682
    @WebDeveloper682 Год назад

    i swear it is the best grid explanation video for me

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

  • @reflectionethio9662
    @reflectionethio9662 2 года назад

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

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

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

  • @fredriksundgren2326
    @fredriksundgren2326 4 года назад

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

  • @Markus-iq4sm
    @Markus-iq4sm Год назад

    One of the best tutorials on the CSS Grids

  • @spsmpssm238
    @spsmpssm238 2 года назад

    From India Very Clear Explanation

  • @ddabral
    @ddabral 2 года назад

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

  • @minphonemyat2351
    @minphonemyat2351 3 года назад

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

  • @MrSidMan
    @MrSidMan 3 года назад

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

  • @johmcg64
    @johmcg64 4 года назад

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

  • @mohamedelgazar5283
    @mohamedelgazar5283 Год назад

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

  • @zedleclair6638
    @zedleclair6638 4 года назад +2

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

  • @Greg4510able
    @Greg4510able 8 месяцев назад

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

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

  • @adekunlefhunkie2170
    @adekunlefhunkie2170 Год назад

    not boring and very impactful. my fave webdev youtuber🥰

  • @himanshu2149
    @himanshu2149 5 месяцев назад

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

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

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

  • @value_investing_indonesia
    @value_investing_indonesia 4 года назад +1

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

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

  • @Sharky-c3z
    @Sharky-c3z Год назад

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

  • @macrooooo__
    @macrooooo__ 2 года назад

    thank you for this. solved my frontendmentor assignment.

  • @akalrove4834
    @akalrove4834 3 года назад

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

  • @dorin7022
    @dorin7022 3 года назад +1

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

  • @mattwood2002
    @mattwood2002 2 года назад

    I love the pace of this dude

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

  • @SHiniGAMi_007
    @SHiniGAMi_007 Год назад

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

  • @ruthpol
    @ruthpol 2 года назад

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

  • @phucphamhuu4809
    @phucphamhuu4809 3 года назад

    so straightforward and approachable

  • @ahmedhassaine242
    @ahmedhassaine242 3 года назад

    this guy is insanely good at this.

  • @BigSmoke-r9w
    @BigSmoke-r9w 11 месяцев назад

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

  • @RichardPetron
    @RichardPetron 2 года назад

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

  • @thequang9234
    @thequang9234 2 года назад

    this dude is effortlessly magical

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

  • @stephanieeaton449
    @stephanieeaton449 2 года назад

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

  • @AERNIGH
    @AERNIGH 2 года назад

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

  • @petarkolev6928
    @petarkolev6928 3 года назад +3

    Incredibly simple explanations with nice examples! Great tutorial!

  • @rustndust818
    @rustndust818 3 года назад

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

  • @alejandroalba1971
    @alejandroalba1971 4 года назад +1

    Great video, great explanation. We were robbed at college by giving us a lot of theory than real staff. Please try putting content in the boxes like pictures, nav bars, drop downs, text areas, forms. Your explanation is very incredible. Thank you very much

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

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

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

  • @FredericGuimont
    @FredericGuimont 3 года назад +3

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

  • @zafarhussain8273
    @zafarhussain8273 4 года назад

    you always made me happy with your teaching way

  • @_.sunnyraj._
    @_.sunnyraj._ 4 года назад

    You and Ed are the best explainers of these things

  • @anthonygreen2307
    @anthonygreen2307 2 года назад

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

  • @bufpalful
    @bufpalful 2 года назад

    Understood in 20min. Thank you

  • @eborne66
    @eborne66 4 года назад

    Thanks for your concise and comprehensive tutorials.

  • @chantscreen
    @chantscreen Год назад

    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!

  • @juliemassa6024
    @juliemassa6024 3 года назад

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

  • @SpiritualFacts
    @SpiritualFacts 5 лет назад

    really awesome and in depth, better then other tutorials in RUclips

  • @michaelsvoboda1024
    @michaelsvoboda1024 4 года назад +1

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

  • @Cheesedipper32
    @Cheesedipper32 3 года назад

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

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

  • @alekhandrosuarez2832
    @alekhandrosuarez2832 3 года назад

    You just saved my project! Thanks!