CSS Columns Tutorial for Beginners | Multicolumns without Grid or Flexbox

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

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

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

    It is possible to easily create a multi-column layout in CSS without using flexbox or grid. In this tutorial, we will create a multi-column layout and look at different options we can use along with the columns. If you're just getting started with CSS, I recommend going to the beginning of this CSS for Beginners playlist: ruclips.net/p/PL0Zuz27SZ-6Mx9fd9elt80G1bPcySmWit

  • @doinkstr
    @doinkstr Год назад +10

    Some tips, you can hover over a selector in VSCode and it'll tell you the Selector Specificity :).
    You can also press ALT+SHIFT+F to auto-format JS/HTML/CSS too!

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

    Could you answer to me mr dave gray? I've watched your entire html tutorial and im almost at the end of the css one. You helped me a lot building web pages. Thank you

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

      What are you asking? For questions, please join my Discord: discord.gg/neKghyefqh

  • @konstantinzakharov5643
    @konstantinzakharov5643 Год назад +2

    I finally made it to Columns and It is becoming real tough :)

  • @kaberanshutisamuel1856
    @kaberanshutisamuel1856 4 месяца назад +1

    I didn't know specificity matters that much until this video 😂😂

  • @코린이31세
    @코린이31세 2 года назад +6

    Dave, thank you!!! I got a frontend developer job thanks to your amazing video!!
    I didn't know anything about programming, but your video and explanation are easy to understand.
    I really appreciate your hard work. You are my lifesaver👍👍

  • @IG7799-c4u
    @IG7799-c4u 6 месяцев назад

    How come you had to be more specific for the quote class when previously you were targeting the h2 inside of the columns class? And just to be clear, I understand the notion of specificity in general, but I don't understand how in this case the styling wasn't being applied when the quote class is being applied to a paragraph element, not to a h2. Hopefully you understand what I mean here.

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

    Just when you were thinking you can not like Dave Gray more.... and hop.... He likes not just tacos but The Dude too..... :)

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

    Can someone tell me why the class columns was used with the class quote? in short this part:
    .columns .quote {
    font-size: 3 rem
    }
    the 3 rem was only applied to the quote, is there a reason to put the columns class first?

  • @insteresting
    @insteresting 11 месяцев назад

    12:15 Setting the h2 styles as
    break-after: avoid;
    break-inside: avoid;
    seems to solve that problem.

  • @AnubhavSingh-nb3bt
    @AnubhavSingh-nb3bt 6 месяцев назад

    Sir can you please give name of web site for unicode character table that you are using in this vedio 😅

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

    I could not reproduce the problem with "h2" element at 10:46, not with firefox, firefox dev or google chrome. Seems like its not a problem anymore?
    Oh boy at 19:00 you opened my eyes! I mean i know about specification but i would never expect it here that way.
    Realy good content 👍

  • @ahmad-murery
    @ahmad-murery 2 года назад +2

    The only thing I find it impossible to implement without "css column" is spreading part of one paragraph in the next column,
    Thanks Dave, that was a great video 👍🚀

  • @blastofffpv
    @blastofffpv 10 месяцев назад

    That's a nice dutorial, man.

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

    This is 😅 complicated 😂 my brain is about to explode

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

      You will get it. No rush. Take your time and refer to the provide documentation links if needed.

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

    Awesome, Bing Chat suggested you when I asked specifically for a Tut on CSS Columns. I didn't like the way my restaurant menu looked in Grid where my food item cards sitting next to each other would expand to the height of the adjacent card when one has a much longer dish description. I knew CSS columns could probably do what I'm looking for. I like the way you teach - subscribed! (I use the text expander, Espanso, to add my EM DASH with the shortcut "--" prefixed with a semi colon.

  • @arsyaswanth5
    @arsyaswanth5 2 года назад +1

    nice video Dave!!! would love more videos on css too apart from react stack. Thanks!

    • @DaveGrayTeachesCode
      @DaveGrayTeachesCode  2 года назад +1

      Thank you! I'm building my CSS for Beginners playlist here: ruclips.net/p/PL0Zuz27SZ-6Mx9fd9elt80G1bPcySmWit - More to come! 🚀

  • @Saikiran-ty8mo
    @Saikiran-ty8mo Год назад

    Thank you sir for the wonderful course . I have a doubt that , i thought instead of using "white-space : nowrap" , I have tried " break-inside : avoid" . As per the tutorial , break-inside helps us to not split the element right ? But it is not working . Could you please clarify my query.
    Once again really thank you for the course sir .

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

      MDN provides a great reference for any specific properties including both white-space (developer.mozilla.org/en-US/docs/Web/CSS/white-space) and break-inside (developer.mozilla.org/en-US/docs/Web/CSS/break-inside). These properties have very different targets: how white-space is handled inside an element vs how page, column, or region breaks are handled inside of a box.

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

    Thank you. I haven't seen that anywhere

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

    Sir I have a doubt if you can answer that, the nowrap here in the case could also be achieved by " display: inline-block; ", so is it recommended to use that in this case and if no, then why? By the way very knowledgeable videos sir.

    • @DaveGrayTeachesCode
      @DaveGrayTeachesCode  2 года назад +1

      Often times there are more than one way to achieve the same goal. I prefer the white-space: nowrap; because that is what it is made to help with. The other approach you mention does also work. 🚀

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

    That was such an amazing tutorial! I've got a lot new information about columns, thank you, Dave!
    But is there any way to make each paragraph on it's own column, without spreading?

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

      Thank you! 🙏 Yes, you can achieve what you are asking with CSS Grid. Lesson 15 on CSS Grid shows how to quickly do this with grid-auto-flow: ruclips.net/video/EaWj2AWI5Es/видео.html

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

    Really ,your way of teaching is amazing ,and has more informations.keep going thank you so much

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

    Thank you, Dave

  • @GabrielSouza-yy2rq
    @GabrielSouza-yy2rq 2 года назад

    Great video as always Dave, thanks a lot. Btw, The Big Lebowski is a must watch 😄

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

    1:47 why don't you just use auto format on save from the settings and disable prettier

    • @DaveGrayTeachesCode
      @DaveGrayTeachesCode  2 года назад +1

      Never slowed down to change those settings, but good suggestion! I have now removed Prettier.

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

    Hi everyone! Do you think it's ok if I use div instead of section as a container for the paragraphs that will be displayed in columns? This way the html file can be validated on w3c without the warning "Section lacks heading".

    • @DaveGrayTeachesCode
      @DaveGrayTeachesCode  Год назад +2

      When you get to the project at the end of this series, you will see how I handle this. You can create a heading which helps identify your section to screen readers, and at the same time, you can move it off of the screen if you don't want to see it.

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

      @@DaveGrayTeachesCode Awesome! Thanks for answering and for this amazing tutorial. That's very generous of you.

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

    Thanks Dave ❤

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

    Thank you for this very quality content.

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

    From one Kansan to another, very nice work!

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

      Thank you, Jon! 🙏 I hear we're in for *another* windy 💨 one today

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

    columns overlap eachother for me

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

      Compare your code to the code available at the course resources link in the description. Also consider your screen width and then column width.

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

    Very useful tutorial thank you

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

    Really a useful content👍

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

    Fantastic course so far!❤