DEV Community

Ben Halpern
Ben Halpern

Posted on

If you could start over from scratch, how would CSS work?

CSS has a lot of issues. Now that we have a few decades of knowledge, how would you do things differently.

And I'm talking about web styling in general, doesn't have to be "cascading stylesheets" or anything like what we currently have.

Oldest comments (65)

Collapse
 
chrisvasqm profile image
Christian Vasquez

Collapse
 
jochemstoel profile image
Jochem Stoel

Thanks Christian for your wisdom and insight.

Collapse
 
nektro profile image
Meghan (she/her) • Edited

Wait, people don't like CSS? To me, CSS actually seems like one of the most well done parts about the web platform. Not only from readability but it makes really good tradeoffs between verbosity and character count that makes CSS really really easy to read when written well. When writing CSS we have to describe complex relationships between elements, their state, and their relationship to other elements. With CSS, we are able to accomplish this with incredible ease.

The only parts I would change are:
- Make CSS cascade more and support nesting style blocks (like S[A/C]SS)
- Allow HTML Imports so we can write CSS in a <style> and not forced to use JS
- Take a another look at existing properties and reevaluate them.

Collapse
 
georgeoffley profile image
George Offley

You have clearly never tried to center something among several other divs.

Collapse
 
nektro profile image
Meghan (she/her)
.parent {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
Thread Thread
 
pedro profile image
Pedro M. M. • Edited

Flexbox is the best thing ever happened to CSS. ❀️

Thread Thread
 
georgeoffley profile image
George Offley

Agreed. Makes things so easy. Makes me hate the world a little for wading through the preflexbox world.

Thread Thread
 
ra9 profile image
Carlos Nah

What happens to css grid then?

Thread Thread
 
anechol profile image
Ashley E

Late reply sorry, but nothing. Grid and Flex are to be used in tandem with one another.

Collapse
 
georgeoffley profile image
George Offley

Biggest CSS issue that has been kind of but not really fixed is the constant browser hacks needed.

Collapse
 
alainvanhout profile image
Alain Van Hout • Edited

The issue here is not character count, but predictability. The way(s) CSS works makes it so that there is lots of unintended and unexpected interactions.

Collapse
 
pedro profile image
Pedro M. M.

Well, that’s the definition of design.

Collapse
 
nektro profile image
Meghan (she/her)

I'm curious, what have you run into that was unpredictable?

Thread Thread
 
alainvanhout profile image
Alain Van Hout • Edited

Off the top of my head: adding margins that are ignored because other positioning takes precedence (I’m not talking about specificity here).

I’m curious that you don’t know what I mean with my previous remark, since unpredictability is pretty much a staple of CSS, so much so that it’s spawned jokes like mobile.twitter.com/thomasfuchs/sta....

Thread Thread
 
hissvard profile image
Manuel Luciani

I'd say the weirdest thing I've run into in that regard is margin collapse - like, why?

Thread Thread
 
nektro profile image
Meghan (she/her) • Edited

if you have a ul with some li and then on the li set display: inline then yes, margin will be ignored, but you can fix it by using inline-block. All inline elements ignore vertical margin. But this is more an "issue" with the expected vs actual result of the layout engine and not from CSS

Thread Thread
 
hissvard profile image
Manuel Luciani

Yeah, although what I was referring to is the way only the bigger margin is considered in some situations - you'd usually expect elements' margins to add up

Thread Thread
 
nektro profile image
Meghan (she/her)

The selector with the most specificity is the one that gets applied. If you have a element in an element in an element etc and they all have a margin then the margin does add up.

Thread Thread
 
adrianirwin profile image
Adrian Irwin • Edited

Margin collapse makes a lot of sense in textual content heavy documents. A typical example might be a li followed by a an h3 element, and generally the header would have an ample top margin, so there is no need to combine the trailing margin of the list with the leading margin of the header, it would simply lead to excessive white-space.

Useful for the kind of documents HTML was developed for, but not so useful once intricate visual designs and layouts enter the scene.

Thread Thread
 
nateous profile image
Nate

I agree with you, Meghan. Most of the hardship comes from not understanding how to do something in a simple way with CSS. As soon as we got rounded corners designers wanted something else we couldn't do easily. Haha

Collapse
 
ethan profile image
Ethan Stewart

Had some fun with some of that unexpected behavior recently, apparently if you set overflow to auto on one axis (e.g. overflow-x), you can't set the other axis to visible. And it's in the spec, so it's definitely intentional πŸ˜†

Collapse
 
james2m profile image
James McCarthy

There is so much I would bin I can’t even begin. But top of the list, like way top would be no cascade. It’s such an impractical way of re-using code and over long periods in busy projects always leads to a knotted ball of string.

Way more practical is styling each component and encouraging component re-use.

Collapse
 
georgeoffley profile image
George Offley

I would kill it with fire.

Collapse
 
itsjzt profile image
Saurabh Sharma

For me, I think inline styles can be a little more powerful.

Collapse
 
justynclark profile image
Justyn Clark

Never inline styles!

Collapse
 
itsjzt profile image
Saurabh Sharma

if you are writing a typical website then sure another file for CSS makes sense, but for web apps where each component will be independent then Inline styles are good too.

Thread Thread
 
justynclark profile image
Justyn Clark

True. Like React ;)

Collapse
 
booligoosh profile image
Ethan

I think now my only use for inline styles is styling stuff through JavaScript, which goes to the inline style

Collapse
 
ben profile image
Ben Halpern

Here's a post that doesn't answer this question but might provide some food for thought:

Collapse
 
nektro profile image
Meghan (she/her) • Edited

That was definitely a great read, and I definitely didn't try to top comment the thread by just saying CSS is great. I totally see where they're coming from, and tbh I don't think the web can do what Eric talked about. At least yet. Houdini has some good promise to make CSS a lot better and Custom Elements (with more browser support) might make HTML more expressive.

caniuse.com/#feat=css-paint-api
caniuse.com/#feat=custom-elementsv1

I think one of the biggest drawbacks and reason for the discomfort with why the web is bootstrap-lacking is that even though The Web was first made public until 1991, The Extensible Web only began in 2013. So there's this 20 year difference between how long we've been able to make web pages and how long we've made bootstrapping even remotely possible on the web. Thus, realistically the "modern" web is only ~5 years old. And if you look at just how much the web has changed only in those past 5 years it gives me a lot of hope for what we as a community will be able to do in the next 20 years now that everyone's on board :D

Collapse
 
lexlohr profile image
Alex Lohr

I like most of it, the cascade, the powerful selectors, the attributes. I would make only one change Instead of !important, I would have created pseudo selectors to increase or decrease specificy :+id.class.tag and :-id.class.tag, where id, class and tag are optional representations of the amount of increase and decrease. I also would have made the specificy of inline styles that of an id selector, so that it could be easily overwritten with :+1.0.1

Collapse
 
franzliedke profile image
Franz Liedke

I feel like there should be a constraint: any replacement has to have the same feature set, including things like the ability to define user-agent stylesheets to overwrite the styling on any page.

This, sadly, gets lost with many of the modern approaches I see...

Collapse
 
coolgoose profile image
Alexandru Bucur

Considering the 'recent' grid and flexbox I think we're in a decent spot regarding CSS. I still do hate specificity in some cases (and !important can burn) but we're in a really great spot now compared with IE6 when I started developing.

Starting from fresh I only have three things on my list:

  1. Some sort of 'namespacing' so you can do 'BEM' on the html classes without beeing 'mycomponents__looks--like-candy'
  2. Any kind of nesting like SASS or your favourite pre-processor.
  3. Better handling of z-index and overflow
Collapse
 
stevensonmt profile image
stevensonmt

While I enjoy flexbox and especially grid, but I recently started using Elm and find the approach taken by the style-elements package very insightful. Layout and positioning is not really "style" it's architecture. Separating layout and style into different tools makes a lot of sense to me.

Collapse
 
justynclark profile image
Justyn Clark • Edited

CSS Grid, FlexBox, Sass πŸ’₯

Collapse
 
sam_ferree profile image
Sam Ferree

The way Sass currently works.

Collapse
 
ghost profile image
Ghost • Edited

I'm not a big Doctor Who fan but the TARDIS seems like it would be the best way to go, find the exact moment IE6 was conceived and just bloop it out of existence.

There would have been less need to cascade failure.

Other than that, ++Sass

Collapse
 
wesnetmo profile image
Wes

properties would be final.

once you assigned e.g. color:red, you are not allowed to override it in more specific selectors

Collapse
 
chitchu profile image
Vicente Jr Yuchitcho

I'd like to fix style collisions in general. Probably get ret rid of global scopes and maybe an overhaul of specificity rules.

Collapse
 
tipoqueno profile image
Eugenio Monforte

"CSS has a lot of issues." Which ones?

I feel that a lot of developers didn't learn CSS properly.

Collapse
 
setagana profile image
setagana

To me (as someone who naturally gravitates more towards the back-end of the stack) my biggest annoyance with CSS is that I find it all to be magic words. Nothing has a predictable effect, because how a property influences an element depends on what kind of element it is, what kind of elements it is a child of, what properties those parents have, etc etc etc. So when I set out to achieve a specific goal, it feels like I'm just trying random combinations of magic words on the element, its parents, its children and every other thing in the DOM until I find the "spell" that does what I want.

Collapse
 
napoleon039 profile image
Nihar Raote

I used to center and align stuff using Bootstrap. Now that I've learned Flexbox and CSS Grid, I've found less use of Bootstrap. Though I don't use Grid that much. Flexbox is more useful for my projects.

Collapse
 
onecuteliz profile image
Elizabeth Jenerson

Same here.