Coder Social home page Coder Social logo

Comments (3)

giuseppeg avatar giuseppeg commented on June 3, 2024

This method also seems to reintroduce a CSS specificity battle that (I think) BEM tries to avoid.

BEM and SUIT are pretty much the same thing just with different naming convention. SUIT is also backed by tools and a better (imho) formalized methodology.

I wonder how I might avoid this situation? Should the ContentList-item elements be their own standalone block? Or maybe I should use an element modifier instead (ContentList-item--small)?

I think that the former might work better. Not sure if you are familiar with React but when in doubt I ask to myself: "how would I do that with React components". In this case the answer is similar to your solution I guess:

<ContentList>
   <ContentListItem small />
</ContentList>

from suit.

oleersoy avatar oleersoy commented on June 3, 2024

Or just use a margin utility to tweak the css as needed. Margin utility examples here - see test 4

from suit.

frekyll avatar frekyll commented on June 3, 2024

@rmunch Since you have limited flexibility, I would resort to making the items their own component. In this example I used the shared namespace, but that doesn't matter. What matters is that the styles don't leak in this example.

<div class="ContentList">
    <div class="ContentListItem ContentListItem--large">Content 1</div>
    <div class="ContentListItem ContentListItem--large">Content 2</div>
    <div class="ContentListItem ContentListItem--large">
        <div class="ContentList">
             <div class="ContentListItem">Small content 1</div>
             <div class="ContentListItem">Small content 2</div>
        </div>
    </div>
</div>
.ContentListItem {
    margin-bottom: 10px;
}

.ContentListItem--large {
    margin-bottom: 30px;
}

I also created a third-party SUIT CSS utilities package for quickly adding space around objects.

from suit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.