Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 2.46 KB

InlineStyles.md

File metadata and controls

41 lines (26 loc) · 2.46 KB

Inline Styles

In the long term, CSS, LESS and SASS are dead. To keep this project on the bleeding edge, we should drop SASS support in favor of inline styles.

Why?

I think the case is made pretty strongly in these three presentations.

Christopher Chedeau Michael Chan Colin Megill
CSS In Your JS by Christopher Chedeau Michael Chan - Inline Styles: themes, media queries, contexts, & when it's best to use CSS Colin Megill - Inline Styles are About to Kill CSS

Clearly this is the direction in which web development is moving.

Why not?

At the moment, all the inline CSS libraries suffer from some or all of these problems:

  • Client side only
  • No vendor auto prefixing (requires User-Agent checking on server side)
  • No server side media queries, resulting in a flicker on load to adjust to client device width

Ideally, a library would allow for all the benefits of inline calculable styles, but, in production, would allow some generation of a CSS block, with media queries to handle device width conditionals, to be inserted into the page with a <style> tag, and then each element that was using a style that was dependent on a media query would have a class name generated.

Contenders

This is a list of possible style libraries that we could implement into this project.

Users and contributors to this project should periodically go through this list and see if any of them have developed features that make them really worthy of server side rendering in a production environment.

Additional Reading