Skip to content Skip to sidebar Skip to footer

Why Hyphen (-) Separated Class Names Are Widely Used In Css

While gone through some of the CSS files included with some websites and some other widely used plugins and frameworks, found that they are widely using hyphen separated words as c

Solution 1:

Readability:

ui-helper-reset readable, uiHelperReset unreadable.

Safe delimiter:

When using attribute selectors like [class^="icon-"], [class*=" icon-"] to specifically and safely target the specific classname styles by prefix, while preventing i.e: .iconography to be matched.

Ease of use:

In every decent code editor, if you use - to separate combined-class-name you can easily highlight a desired portion by double-clicking it like: col-md-3, and replace it (or even document globally) to col-sm-3. On the other hand, if you use underscore_ like class_name_here, if you double-click it you'll end up highlighting the whole class-name like: class_name_here. Such will force you to manually drag-select the desired portion instead.

CSS Naming Convention Methodology

You can adopt a CSS naming concept like:

  • SUIT CSS
  • BEM (Block, Element, Modifier),
  • OOCSS (Object-Oriented CSS)
  • SMACSS (Scalable and Modular Architecture for CSS)
  • Atomic CSS
  • Your Own Concept CSS :)

They all help a team speak "the same language", by adopting a stricter "Naming things" such as:

SUIT CSS

/* Block */.Chat{}

/* -element (child) */.Chat-message{} 

/* --modifier */.Chat-message--me{}   /* Style my messages differently from other messages *//* .is-state */.Chat.is-active{}     /* Multiple chats - active state handled by JS */

or

BEM:

/* block */.chat{}

/* __element (child) */.chat__message{} 

/* --modifier */.chat__message--me{}   /* Style my messages differently from other messages */.chat--js-active{}     /* Multiple chats - active state handled by JS */

If your .chat is part of the page you're viewing, you could use general Block classes like .btn and Modifier .btn--big like <a class="btn btn--big">Post</a>, otherwise if your buttons need a stricter styling specific to your chat application than you'd use .chat__btn and .chat__btn--big classes. Such classnames can also be preprocessed.

SCSS

I.e: by using Sass SCSS, a superset of CSS3 sintax you can do stuff like:

(Example using SUIT CSS)

.Chat {
  font: 14px/1.4 sans-serif;
  position: relative;
  overflow-y: scroll;
  width: 300px;
  height: 360px;

  &-message {                 // refers to.Chat-messagepadding: 16px;
    background: #eee;

    &--me {                   // refers to.Chat-message--mebackground: #eef;       // Style my messages differently from other messages */
      text-align: right;
    }
  }

  &.is-active {               // refers to.Chat.is-active (JS)
    outline: 3px solid lightblue;
  }
}

HTML:

<div class="Chat is-active">
  <div class="Chat-message">Hi 😉</div>
  <div class="Chat-message Chat-message--me">Ciao!<br>How are you? 🙂</div>
  <div class="Chat-message">Fine thx! Up for a ☕?</div>
</div>

jsFiddle example


Conclusion:

Adopting a stricter naming format among a team is important. Prevents and minimizes dead legacy classes bloating your HTML, helps code re-usability, readability and speeds up your workflow. Additionally, it forces you and your team to think in a much more modular way about your HTML structure - as components or atoms. Whatever you decide to use is up to you - just, be consistent.

Solution 2:

It is just a practice for readability. Generally, you cannot have such variables in JavaScript, for separator, as - is an operator. When you need separator in JavaScript, you either use something of these:

.ui_helper_reset //snake_case
.uiHelperReset //camelCase

This way you can differentiate that one is used for CSS and other is for JavaScript. This is my point of view, but can be applied for your answer too! :)

Solution 3:

In addition to being more readable, they can also suggest which classes are related to other. Twitter Bootstrap buttons, for example, have classes like

btn
btn-danger
btn-sm

etc.

The second two are related in usage to the first

Solution 4:

It is just a for readability. you may use any names as per convention.

Post a Comment for "Why Hyphen (-) Separated Class Names Are Widely Used In Css"