React Dev, You Need To Know @container!

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

КОМЕНТАРІ • 96

  • @Kwuala
    @Kwuala Рік тому +35

    Thank you for the "Layout first, styling second" piece of advice ❤

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

      timestaaaamp please? x)

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

      for markup languages, in particular for LaTeX, the advice should probably be: content first, layout/styling second.

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

      @@vray2904 It was said many times, the last one is at 30:15

  • @Mikenight120
    @Mikenight120 Рік тому +16

    You are trully a Jewel to this community of developers. Once I found your channel I cannot stop seeing these high quality videos. Please never stop, we appreciate all your effort you put in your videos!

  • @kettenbach
    @kettenbach Рік тому +6

    Another banger sir. For twenty minutes I was thinking what's tailwind gonna do, and then bam, first party plugin. I'm on it. Thanks bro. God bless. 🙏👍💪

  • @user-ik7rp8qz5g
    @user-ik7rp8qz5g Рік тому +1

    The dog on wallpaper seems unhappy about sidebar disappearing at 1:45 😀

  • @kevyyar
    @kevyyar Рік тому +2

    Jack we need a full ordered front end course from you! Your explanations and knowledge is so valuable. We want to become architects like yourself 😅

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

    Was just thanking to myself that you haven't posted in 3 weeks, and bam! new video!

  • @codewithguillaume
    @codewithguillaume Рік тому +2

    I was looking for an answer to that problem weeks ago. Found out the same solution as you and sharing the same pov.

  • @ogreeni
    @ogreeni Рік тому +7

    Love your approach to CSS, please make more content like this!

  • @BoodskiBro
    @BoodskiBro Рік тому +2

    I've wanted container queries for almost a decade!

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

    Great video as always Jack. I have been waiting for container queries to be supported for a long long time. I do feel like it is important to note that although container queries are now 'here', it is not wise to already use them in production. They have been added to the latest releases of all major browsers but currently only have a support of 73% worldwide. The main problem is people running/stuck on older mobile browsers.
    Maybe there are good polyfills available (I have not yet tried them myself) but just be sure that you don't break your styling for that remaining 27%.

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

      Definitely. Test on your browser support matrix.

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

      Definitely true. Would really like to start implementing them but the browser support is just not satisfactory yet.

  • @BHFJohnny
    @BHFJohnny Рік тому +7

    On my current project, we're not even allowed to use grid or even flex-gap. So I expect @container in about 2036

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

      Sorry to here that. ;(

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

      good god I'm so sorry, this must be in a very specific field that requires super old IE support? At least you have flexbox still? lol

  • @eleah2665
    @eleah2665 Рік тому +2

    Blue Collar Coder does not want me to lose my mind! Thanks again. Always good and interesting.

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

    "... I am telling you, me to you, you will lose your mind" this statement is absolutely true 😆

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

    Your reactions when something works are just soooo precious! 😂😂😂

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

    You help me finally understand what container query is! Thank you for this amazing content!

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

    Super awesome, I need to do it sidebyside handon to get grip. Thanks Jack for this.! :)

  • @IainSimmons
    @IainSimmons Рік тому +2

    Very cool! Great explanation!
    Just one thing that bugged me though, I think you meant to use an aside element instead of an article!
    Loved how easy the Tailwind port was, I think most of us probably expected a ton of extra classes scattered everywhere, but it was so minimal.

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

      Or a section, that's another alternative. :)

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

      This is just not a great example if we're worried about proper semantics. `main` is the main content of the site, so both columns could have been in main since they are housing the same content (list of movies) - we don't actually know the relation between them in this example. The columns could have been wrapped with `section`s as they are used to group related content...however, that would then depend if it is random movies in each section or there is some logical grouping like genre, rating, etc... an `aside` could have been used for the sidebar if the content there is not required to understand the main content but it's hard to see that scenario in this layout of two lists (vs. content + list/sidebar). All that to say, the semantics of the content is not given, and there are no `header`s or `heading`s to hint it, so really they should just both be in `div`s which receive their semantics from their children.

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

      @@portalteam5832 you are right. And I need to learn a lot more about semantic HTML.

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

    Thank you very much for this, have been using clientWidth in react to style make these kind of styles with complex code. This is just a jewel... Thanks again!

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

    thanks mate you showed me how i should change my designing methods in 2023, like we say if you are not updated you are outdated

  • @daniellacerda6550
    @daniellacerda6550 Рік тому +2

    Great video, I loved your approach, easy, precise and very funny

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

    I love when Jack says: “how cool is that?”

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

    Hi Jack, big fan over here! I've watched almost all of your videos, you are a great dev! But there is something that I am missing out from your videos. You're mostly using divs for content layout (probably except few videos, including this one). Can you make a video of some semantic HTML, and explain in simple words what is better for SEO, and how search engines are parsing our React apps, and do we really need to make all of our production apps using semantic HTML?

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

    The thumbnail made me subscribe.

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

    Would love a video on your vscode extension useage, unless you've done one already.

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

    Wow blue-collar magician.👍🏻

  • @user-vc5qc5lc8u
    @user-vc5qc5lc8u Рік тому +1

    Hello Jack, i am amazed how fast your terminal look like. Did you made a video about your hardware / workstation configuration ? Cheers !

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

    You looks so happy like a kid in a candy store with the @container query lol

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

    You my friend have earned my SUBSCRIPTION and BELL ICON ❣

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

    I don't know you personally sir but you radiate a very positive energy the way you speak, each and and everything is so clear and understandable, you have so basic and minute details in all of your videos in a very simple yet detailed possible way, world needs more teachers like you sir,
    A big thanks to you ❤❤❤❤
    Could you please take my doubt from this video
    When you applied container query to the .card {.image: borderRadius} why this styling is only applied to the left layout in the first place and not right layout ?, sorry If my question is too dumb but I am learning 🙏🏻

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

      That's the container queries. The left and right sections are defined as containers. And there are container queries that say that when the cards are laid out within a container over a certain width then styles are applied that turn the layout into a two column layout.

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

      @@jherr Thank you for your reply sir, let me go through the whole video again 🙂

  • @Web-Dev-Codi
    @Web-Dev-Codi Рік тому +2

    Love your videos. Always very informative and explained very well. Thank You.

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

    Mr.Jack is the new Uncle Bob

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

    Wow! - Top Notch tutorial on @container responsive layout design! - Thanks, Jack
    {2022-12-03}

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

    Great tutorial! Could you please share with us your terminal theme and font? Thnx :)

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

    Great examples of @container, thanks for the tutorial.
    I like how nice your terminal looks, with the colors and lines. How did you do that?

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

      Fig, iTerm and oh-my-zsh.

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

      @@jherr Thank you, I got oh-my-zsh running in vscode. 🙂 Fig is mac only, but will wait for the windows version.

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

    Not just React, all developers

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

    Realy good and awesome. Thanks a lot

  • @tolgask2812
    @tolgask2812 Рік тому +2

    i liked before watching

  • @ulrichmbouna4091
    @ulrichmbouna4091 7 місяців тому

    Already support in FireFox

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

    Containers!!!! Alright!! 🫡

  • @9622AX
    @9622AX Рік тому +1

    Awesome! Thanks

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

    sick thumbnail 🤣

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

    Thanks Jack!!

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

    Great explanation!

  • @charliec.2099
    @charliec.2099 3 місяці тому

    Could you upload the old code w/ media queries to compare against the container ones?

  • @braydenwerner197
    @braydenwerner197 Рік тому +2

    Cool video, thanks

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

    Are you using a green screen? Really looked like you were sitting in that room until I started to question it towards the end and then you poofed and confirmed editing lol

  • @bartek...
    @bartek... Рік тому +1

    Firefox finally!!!!!

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

    What cool theme are you using ?

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

      Night Wolf [black] and JETBrains Mono

  • @darz_k.
    @darz_k. 2 дні тому

    Can I not just use a table to position the content??

  • @Murugan.d-cg2wi
    @Murugan.d-cg2wi 3 місяці тому +1

    ❤❤

  • @r-i-ch
    @r-i-ch Рік тому +1

    God help you without a * { box-sizing: border-box }

  • @petarkolev6928
    @petarkolev6928 10 місяців тому

    How does your app read this "@container" rule? When I use it in my React app it's not applying at all :( My VS Code also throws me warning "Unknown at rule @containerscss(unknownAtRules)". Is this issue related to SASS? Because I am using SASS

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

    As always another great video Jack. Love your integrated terminal in Vs code . What tool do you use to get that kind of features inside Vs code terminal ? I would love to have some productivity within Vs code terminal . Would be great if you could share the details

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

      It's integrated iTerm + Fig.

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

      @@jherr Fig okay I thought I saw Figterm in the corner . Thanks

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

    as always u r the best. thanks.

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

    cup of coffee, just to keep them goin'

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

    You can use this npm prettier plugin to sort your imports like a pro
    prettier-plugin-sort-react-imports

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

    Love your vscode terminal prompt. Care to share?

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

    awesome

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

    Good video and good font, what is?

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

    Screw web and CSS! I wish you fast recovery from cold.

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

    This is cool, but my CSS knowledge is quite weak. I wonder if someone could recommend some channels that teach CSS as clearly as Jack teaches React?

    • @user-xw6jr7ue4b
      @user-xw6jr7ue4b Рік тому +1

      CSS for JavaScript developers course by Josh Comeau explains all the CSS stuff from the video except the container queries themselves since they're quite new.

    • @CanRau
      @CanRau Рік тому +2

      Also Kevin Powell's channel is a fantastic resource for CSS

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

    Container queries doesn’t scale as well as media queries. You will have many container queries instead of few media queries to control responsiveness in big scale project. Right or wrong?

    • @jherr
      @jherr  Рік тому +2

      Modern usage of media queries ends up creating media query blocks for every component they apply to. Even so, no difference really.

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

    Is there anyway you can share your settings.json of vscode??

  • @ShadowJak
    @ShadowJak 10 місяців тому

    Good video, but in the future can you do less talking with the example website on the screen and more talking with the code on the screen? It makes clicking around the video to see the code a bit harder than it should be.

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

    But Firefox doesn’t support this right ?

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

      Not today. But there is a good polyfill.

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

    What's 'wrong' with @media queries?

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

      Does something need to be "wrong" with them?

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

      @@jherr 0:15 "they've had some serious drawbacks"?

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

      @@jesseliverless9811 my bad. Sorry. They only relate to the width of the entire view. Which means that you can only really use them to accurately manage components that consume the entire view.
      Sorry, brain fart, I confused media with container.

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

    oh this not... tailwind.. :D

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

    Don't hype yet... another youtube, we know that, we know about that since few years, but coverage is still weak 65-73%

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

      Why not? There is a polyfill that can take your coverage up to something like 92.8%. Unless you want IE support (who does nowadays though) then I don't see an issue with it.

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

    How is this easier? Lmao

  • @user-ze9nl2iy2x
    @user-ze9nl2iy2x Рік тому

    movies.map(( ... ) => { return ( ... )});