No video

Learn CSS BEM (and avoid these common mistakes)

  Рет қаралды 5,907

Dmitry Mayorov

Dmitry Mayorov

Күн бұрын

Пікірлер: 62
@AJ-vy4yu
@AJ-vy4yu 4 ай бұрын
This deserves a million view. I had used BEM the wrong way.
@dmtrmrv
@dmtrmrv 4 ай бұрын
Thank you @AJ-vy4yu! Curious what did you do differently?
@AJ-vy4yu
@AJ-vy4yu 4 ай бұрын
@@dmtrmrv I created elements of elements and blocks with too many elements, to name a few. I had really long-ass class names😆
@KOBE42__
@KOBE42__ 4 ай бұрын
For a new channel, this video was so well done and I’ve saved it for future reference. A lot to take in but I feel like anything, once you do a couple of projects it becomes second nature. Thanks
@dmtrmrv
@dmtrmrv 4 ай бұрын
Thank you! Yeah, once it "clicks" you don't have to think about it!
@stelatasheva4993
@stelatasheva4993 2 ай бұрын
you get a thumb up from me for the margin on blocks. I have come to the same conclusion long time ago, but can't seem to explain it as good to my peers. And I have to admit, I still mess it up from time to time. My thumb up rule is: If it is inside the block - it is padding, if it is used for positioning - margin. BEM becomes very easy to grasp when one dives into the concept of Atomic design.
@dmtrmrv
@dmtrmrv 2 ай бұрын
Yeah, those outside margins can really mess up reusability!
@rafi_45
@rafi_45 2 ай бұрын
i explore some BEM content in youtube. then I found your explanation is deeper. so thank you. keep up man.
@dmtrmrv
@dmtrmrv 2 ай бұрын
Thank you, glad you liked the explanation!
@seankennedy7970
@seankennedy7970 5 ай бұрын
Great video. Keep it up, I've been a frontend dev for 15 years and have flirted with BEM in work projects but never fully committed - this video has inspried me on my next project
@dmtrmrv
@dmtrmrv 5 ай бұрын
Happy to hear that! Yeah, BEM can be a bit tricky and definitely has its downsides (might be a good topic for another video). But I'm still picking it for every new project.
@EvilArtifact
@EvilArtifact 5 ай бұрын
Thanks for the video. I’ve been using BEM since 2015 and love it, but videos like this help to get my mind back to the fundamentals that keep my code clean.
@dmtrmrv
@dmtrmrv 5 ай бұрын
You are welcome! Glad you found it helpful. I agree, fundamentals are super important!
@rogerpence
@rogerpence 4 ай бұрын
A very good explanation. I am a big fan of CSS nesting and this is the first BEM video I've seen that rationally compares the two. I really like your component-based approach (both to CSS and your video topics) and am gonna work a little hard a BEM in my next project.
@dmtrmrv
@dmtrmrv 4 ай бұрын
I'm glad you liked the explanation! I believe there's nothing inherently wrong with nesting; in fact, some methodologies even encourage it. Based on my experience though, both reading and writing styles become easier when nesting is limited and done purposefully and specificity is maintained at the lowest possible level. Feel free to reach out if you have further questions!
@valery3149
@valery3149 4 ай бұрын
Oh my god! I'm looking for this video for a while ! Very very interesting and well explained! I thank you a lot!
@dmtrmrv
@dmtrmrv 4 ай бұрын
Thank you! Glad it was helpful!
@Denis091294
@Denis091294 5 ай бұрын
Great advices for working with BEM. Thank you!
@dmtrmrv
@dmtrmrv 5 ай бұрын
Thank you for the kind words, happy that the video was helpful!
@bls512
@bls512 3 ай бұрын
Extremely helpful, especially your code pen. I'm curious how you approach a larger project using Utopia. Huge thanks!
@dmtrmrv
@dmtrmrv 3 ай бұрын
@bls512, thanks! I'm glad you found the CodePen useful. Good question! I honestly think Utopia is just a tool (a great one though). What's important when using it on larger projects is ensuring the team is on the same page about how to use it. And generally, for large projects, clear communication with your team is crucial. This includes having straightforward guidelines, clear commit messages, PR descriptions, good documentation, and keeping everyone updated.
@hudinigosh7862
@hudinigosh7862 5 ай бұрын
Thanks for making css video, i really want to learn css. you explain so well please make a css playlist.
@dmtrmrv
@dmtrmrv 5 ай бұрын
Thank you for the kind words! Are there any specific topics or concepts within CSS you'd like to see covered?
@anneyo5627
@anneyo5627 4 ай бұрын
Never use margins on blocks...but whats then the best practice to create space?
@dmtrmrv
@dmtrmrv 4 ай бұрын
@anneyo5627 That's a great question. Ideally the spacing is created with properties like "gap" or by using the "lobotomized owl" technique. Check out the CodePen: codepen.io/dmtrmrv/pen/vYMEGpx?editors=1100 You can find examples of both: .grid { gap: var(--step-1); } .content-flow > * + * { margin-block-start: var(--step-1); } If that's not enough, we can always use margins on elements, because they aren't reused on their own. ".button" in the same CodePen is a good example. Look at the ".button__icon" element: .button__icon { margin-inline-start: var(--step--5); } All this allows us to reuse components in different contexts without any spacing overrides. Let me know if this answers the question!
@anneyo5627
@anneyo5627 4 ай бұрын
Thank you so much! This was helpfull. First time i've heard of the 'lobotomized owl', interesting!
@dmtrmrv
@dmtrmrv 4 ай бұрын
@@anneyo5627 You are welcome! You can read more about it here: alistapart.com/article/axiomatic-css-and-lobotomized-owls/ The article is 10 years old, but it's still relevant. "gap" was not around at the time, but it's still not a full replacement.
@jclewis33
@jclewis33 5 ай бұрын
Great video. Very helpful!
@dmtrmrv
@dmtrmrv 5 ай бұрын
Thank you. Glad it was helpful!
@pareshkamaliya2493
@pareshkamaliya2493 4 ай бұрын
Wow today I learned something new. Could you create a beginner-friendly CSS playlist, if possible?
@dmtrmrv
@dmtrmrv 4 ай бұрын
Hey Paresh, thank you! Are there any specific aspects of CSS you find challenging to grasp? I'm developing a content plan for the upcoming months, and your feedback would be really helpful.
@pareshkamaliya2493
@pareshkamaliya2493 4 ай бұрын
@@dmtrmrv There are good tutorials available on KZfaq, but it's important to understand how much CSS is sufficient and how it's applied in the industry. Essentially, create something that is beginner-friendly yet meets industry-level standards, which puts us a step ahead of others.
@dmtrmrv
@dmtrmrv 4 ай бұрын
@@pareshkamaliya2493 Thank you for these ideas. I'll def address this in future videos.
@VdLifts
@VdLifts 5 ай бұрын
Great video. Keep it up!
@dmtrmrv
@dmtrmrv 5 ай бұрын
Thank you, glad it was helpful!
@JuanCastro-C
@JuanCastro-C 5 ай бұрын
Hi Dmitry, I like the way you explain, great content, thank you. New subscriber here!
@dmtrmrv
@dmtrmrv 5 ай бұрын
Hey Juan, thank for the kind words! Welcome aboard!
@web-atelier
@web-atelier 5 ай бұрын
Excellent, thanks 👌
@dmtrmrv
@dmtrmrv 5 ай бұрын
You are welcome!
@EyeIn_The_Sky
@EyeIn_The_Sky 3 ай бұрын
You mention "don't use margins on blocks" fine but did not show us the alternatives. Would it be to use Flexbox or grid spacing properties like Gap etc? Or is there some padding trick?
@dmtrmrv
@dmtrmrv 2 ай бұрын
@EyeIn_The_Sky Thanks for the question! You are actually not the first one to ask. I see how this part of the video can be a bit confusing. In short, it depends, but you are right. Gap is one of the tools, another is setting the margins using rules like .container > * + * { margin-block-start: Xrem; } which adds margin to all children except the first one. I have a video about exactly that coming in the next few days, so stay tuned!
@GameOver-db7wg
@GameOver-db7wg 3 ай бұрын
Im confused when we need to create a block and we dont need to because sometime i really dont know if i will reuse this element again or not Second question im still confused about combine between utility class and bem blocks
@dmtrmrv
@dmtrmrv 2 ай бұрын
@GameOver-db7wg Thank you for the question! I'd be happy to look at your code to provide more specific guidance, but here are my thoughts on creating a block vs. an element. If an element has a distinct role in your interface, it's a candidate for a block. Even if you're unsure about reuse, it's better, in my opinion, to have more blocks than fewer. This approach helps avoid the issue of complex blocks that we discussed towards the end of the video (14:22). Regarding utility classes, .visually-hidden is a great example. In my projects, I also use utility classes like h1, h2, h3 to style other text elements to visually resemble these headings. The key is consistency. Consider how consistent you can be with these classes. Are they truly atomic? Can you keep reusing them effectively? Again, I'm happy to look at your code to give a more detailed answer.
@vertigoz
@vertigoz 3 ай бұрын
Nada como CSS do BEM
@abdul-azeem100
@abdul-azeem100 5 ай бұрын
Thanks, awesome.
@dmtrmrv
@dmtrmrv 5 ай бұрын
You are welcome! Thank you for asking about BEM in the first place!
@CohenNikesh
@CohenNikesh 5 ай бұрын
awesome vid!
@dmtrmrv
@dmtrmrv 5 ай бұрын
Glad you enjoyed it
@moeinmnia
@moeinmnia 4 ай бұрын
💯
@gaming_with_raza7867
@gaming_with_raza7867 3 ай бұрын
I learned html css and js. Now i am learning backend but the point is i cannot make Good looking layout specially i stuck in responsiveness Anyone any Suggestion?
@dmtrmrv
@dmtrmrv 2 ай бұрын
Hey @gaming_with_raza7867, thanks for your question! Honestly, there’s no easy answer to this, but I’ll try to respond to the best of my knowledge. In short, it’s a journey-there’s always something new to learn, especially in Front-end development. I also struggle with responsiveness sometimes, particularly with complex components or unclear guidelines. What usually helps is working your way from mobile up. Build your projects as if desktop doesn’t exist, then add layers of styles for larger viewports. Use implicit grids and clamp to avoid relying too heavily on media queries. In general, learn typography. The web is mostly text, and knowing how to represent textual information well can help a lot. Try to approach every project as a system rather than a one-off thing, and you’ll improve over time. Trust the process. Hope this helps!
@clevermissfox
@clevermissfox 15 күн бұрын
With all this talk about "create modifier(s) or new block" has me curious what your views are on @container and the complete shade on nesting 😂 makes me wonder what you think about @layer . You couuulllddd put all your defaults in a "default" or "components" layer then any modifications in a "modifier" layer. And then specificity goes out the window.
@clevermissfox
@clevermissfox 15 күн бұрын
*Well kinda. within the competing layers anyway.
@dmtrmrv
@dmtrmrv 12 сағат бұрын
Yeah, I am very curious about using @layers and @container. Didn't have a chance to use them on a real project yet. Layers do help resolve some specificity issues for sure!
@patunolaibukun2506
@patunolaibukun2506 5 ай бұрын
where have you been
@vincentjacquet2927
@vincentjacquet2927 5 ай бұрын
Nice video. While I think BEM is still useful as methodology, I wonder if its implementation, i.e. the naming convention to keep the specificity at (0,1,0), is still relevant considering that we now have :where() to set the specificity to (0,0,0). What do you think?
@dmtrmrv
@dmtrmrv 5 ай бұрын
That's a great question. I tend to use :where() for setting up the default, most common look of elements. And I actually find it quite handy that blocks and elements get this slight increase in specificity-it helps them stand out against the defaults. Sort of sit on top. I'm curious to know how you'd use :where() with/instead of BEM.
@vincentjacquet2927
@vincentjacquet2927 5 ай бұрын
​@@dmtrmrvFirst a little disclaimer: I am not a designer, I mainly work on web applications and the styling takes less than 5% of my time. I want the markup to be as simple as possible, so BEM implementation is annoying because I have to set classes everywhere. But I understood that this makes it easy to style a "breadcrumb-item". I am stil experimenting but now I tend to create parametrizable styles. Say I want to build a breadcrumb and the markup I want to have is the one from ARIA APG breadcrumb example. I would set up custom properties on the .breadcrumb "block" class, use :where to rely on the DOM to find the "elements" without increasing the specificity, and apply the styles on them using the custom properties. .breadcrumb > :where(ol) > :where(li + li)::before { padding-inline: var(--breadcrumb-item-padding-x); ... }
@dmtrmrv
@dmtrmrv 5 ай бұрын
I see; that's more of a CUBE flavor (cube.fyi/). Another methodology I really like. The downside to writing styles like this is if anything in the DOM moves, the styles will break. However, in the case of components like Breadcrumbs, which have a super standard structure and rarely change, it's perfectly fine to write it even simpler: .breadcrumb li + li::before {}. This is because the likelihood of the breadcrumb component having two lists with two different types of elements is very low. It's also a matter of consistency. If the rest of the project is written in BEM, it's still advisable to add classes; otherwise, it's a perfectly acceptable approach. Glad you brought it up! I like conversations like this!
@MrAbbo11
@MrAbbo11 5 ай бұрын
praise the lord for tailwind so i could away from this completely. I know tailwind is probably not suitable for all type of projects, depending on its size. That being said, I'd only ever use BEM if I absolutely had to.
@dmtrmrv
@dmtrmrv 5 ай бұрын
Like you said, there's a time and place for everything. Both BEM and the utility-first approach have their drawbacks and advantages. I'm curious if you've come across this article: nuejs.org/blog/tailwind-vs-semantic-css/?
Avoid These 5 Awful CSS Mistakes
20:42
Kevin Powell
Рет қаралды 192 М.
CSS BEM - The What, How, and Why | Block Element Modifier Methodology
7:18
Closure: Web Dev. & More
Рет қаралды 15 М.
Мы сделали гигантские сухарики!  #большаяеда
00:44
Before VS during the CONCERT 🔥 "Aliby" | Andra Gogan
00:13
Andra Gogan
Рет қаралды 8 МЛН
CSS Subgrid Layouts Are Here!
9:09
Dmitry Mayorov
Рет қаралды 7 М.
Avoid these 5 beginner CSS mistakes
21:38
Kevin Powell
Рет қаралды 81 М.
10 Tailwind Classes I Wish I Knew Earlier
13:31
Web Dev Simplified
Рет қаралды 178 М.
This One Thing Causes Most CSS Issues! (learn how to avoid it)
9:05
Dmitry Mayorov
Рет қаралды 2,2 М.
The Secret Science of Perfect Spacing
9:40
Chainlift
Рет қаралды 404 М.
5 Signs of an Inexperienced Self-Taught Developer (and how to fix)
8:40
Easily Improve Your Web Design (With Example)
17:59
Flux Academy
Рет қаралды 62 М.
You Probably Need BEM CSS in Your Life (Tutorial)
18:47
DesignCourse
Рет қаралды 164 М.
Master CSS Units: Pixels, REMs, & EMs
15:41
Dmitry Mayorov
Рет қаралды 1,1 М.
BEM in 6 minutes - CSS Methodology 2024
6:22
Blue Script
Рет қаралды 33 М.