logo

Time is passing by

by admin posted on March 02, 2017 Travel, Business

CSS selectors all exist within the same global scope. Anyone who has worked with CSS long enough has had to come to terms with its aggressively global nature — a model clearly designed in the age of documents, now struggling to offer a sane working environment for today’s modern web applications. Every selector has the potential to have unintended side effects by targeting unwanted elements or clashing with other selectors. More surprisingly, our selectors may even lose out in the global specificity war, ultimately having little or no effect on the page at all.

Any time we make a change to a CSS file, we need to carefully consider the global environment in which our styles will sit. No other front end technology requires so much discipline just to keep the code at a minimum level of maintainability. But it doesn’t have to be this way. It’s time to leave the era of global style sheets behind.

It’s time for local CSS.

In other languages, it’s accepted that modifying the global environment is something to be done rarely, if ever.

In the JavaScript community, thanks to tools like Browserify, Webpack and JSPM, it’s now expected that our code will consist of small modules, each encapsulating their explicit dependencies, exporting a minimal API.

Yet, somehow, CSS still seems to be getting a free pass.

Many of us — myself included, until recently — have been working with CSS so long that we don’t see the lack of local scope as a problem that we can solve without significant help from browser vendors. Even then, we’d still need to wait for the majority of our users to be using a browser with proper Shadow DOM support.

We’ve worked around the issues of global scope with a series of naming conventions like OOCSS, SMACSS, BEM and SUIT, each providing a way for us to avoid naming collisions and emulate sane scoping rules.

We no longer need to add lengthy prefixes to all of our selectors to simulate scoping. More components could define their own foo and bar identifiers which — unlike the traditional global selector model—wouldn’t produce any naming collisions.

import styles from './MyComponent.css';
import React, { Component } from 'react';
export default class MyComponent extends Component {
 render() {
    return (
      <div>
        <div className={styles.foo}>Foo</div>
        <div className={styles.bar}>Bar</div>
      </div>
    );
  }

The benefits of global CSS — style re-use between components via utility classes, etc. — are still achievable with this model. The key difference is that, just like when we work in other technologies, we need to explicitly import the classes that we depend on. Our code can’t make many, if any, assumptions about the global environment.

Writing maintainable CSS is now encouraged, not by careful adherence to a naming convention, but by style encapsulation during development.

Once you’ve tried working with local CSS, there’s really no going back. Experiencing true local scope in our style sheets — in a way that works across all browsers— is not something to be easily ignored.

Introducing local scope has had a significant ripple effect on how we approach our CSS. Naming conventions, patterns of re-use, and the potential extraction of styles into separate packages are all directly affected by this shift, and we’re only at the beginning of this new era of local CSS.

process.env.NODE_ENV === 'development' ?
    '[name]__[local]___[hash:base64:5]' :
    '[hash:base64:5]'
)

Understanding the ramifications of this shift is something that we’re still working through. With your valuable input and experimentation, I’m hoping that this is a conversation we can have together as a larger community.

Note: Automatically optimising style re-use between components would be an amazing step forward, but it definitely requires help from people a lot smarter than me.

Related Posts

  • Real time design tools

    Just the other day I happened to wake up early. That is unusual for an…

  • When you are alone

    When you are alone for days or weeks at a time, you eventually become drawn…

tags
Travel, Tech, Life, Sport
Previous

Hey DJ play that song

Next

Stumbled the concept

You May Also Like

Inspired by clouds

Make it clean and simple

3 thoughts on “Time is passing by”

  1. John Doe May 29, 2015

    I think the problem for me is the energistically benchmark focused growth strategies via superior supply chains. Compellingly reintermediate mission-critical potentialities whereas cross functional scenarios. Phosfluorescently re-engineer distributed processes without standardized supply chains. Quickly initiate efficient initiatives without wireless web services. Interactively underwhelm turnkey initiatives before high-payoff relationships.

    Reply
    • Jennifer Freeman May 29, 2015

      Very good point which I had quickly initiate efficient initiatives without wireless web services. Interactively underwhelm turnkey initiatives before high-payoff relationships. Holisticly restore superior interfaces before flexible technology. Completely scale extensible relationships through empowered web-readiness.

      Reply
  2. Willie Clark May 29, 2015

    After all, we should remember compellingly reintermediate mission-critical potentialities whereas cross functional scenarios. Phosfluorescently re-engineer distributed processes without standardized supply chains. Quickly initiate efficient initiatives without wireless web services. Interactively underwhelm turnkey initiatives before high-payoff relationships. Holisticly restore superior interfaces before flexible technology.

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • Hello world!
  • Phasellus molestie feugiat hendrerit Interdum
  • Lobortis id bibendum et rhoncus porttitor tortor.
  • Maecenas Ultrices Justo Metus Quis Facilisis
  • Vivamus Pulvinar Urna Nec Ipsum Interdum Blandi

Recent Comments

  • Willie Clark on Inspired by clouds
  • Willie Clark on Make it clean and simple
  • Willie Clark on Calm over the horizon
  • Jennifer Freeman on Calm over the horizon
  • Jennifer Freeman on Make it clean and simple

Archives

  • July 2018
  • July 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017

Categories

  • Uncategorized
  • Culture
  • Lifestyle
  • Arts
  • Travel
  • Business
  • Misc
  • People
  • Photo
  • Story

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Rekam News

  • Latest
  • Popular
Hello world!
latestwid-img
Phasellus molestie feugiat hendrerit Interdum
latestwid-img
Lobortis id bibendum et rhoncus porttitor tortor.
latestwid-img
Trust in your intuitions
latestwid-img
Awwwards best websites
latestwid-img
Working from your home?
© Copyright 2020, Built With Love by IA GROUP
Rasha Qateh | KVK: 77691261 | Contact | Privacy
  • Home
  • Videos
  • Contact