Question

This works, but actually I've never come across it earlier. Does it have some "weak spots"?

div.floated { float: left; }
div.floated+* { clear: both; }

Though I did not notice any "side effect".

Était-ce utile?

La solution

You can use it at your will, although according to MDN, you should take into account that universal selector is the most expensive CSS selector in terms of webpage performance.

Universal CSS Selector Performance

Autres conseils

Here some problems I see:

  1. "floated" is not a semantic class name.
  2. This will clear adjacent elements after divs with the "floated" class, but not anything that is floated by other means.
  3. In most designs I work with, I don't want to clear adjacent elements. Now I'll have to write more CSS to undo this.

I think I don't understand the value of this.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top