Created
November 22, 2020 17:04
-
-
Save barnslig/95eedd803198c4da483a08a584b169d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* gut: alle ausprägungen einer klasse sind zusammengruppiert */ | |
.foo { | |
color: green; | |
} | |
@media (min-width: 768px) { | |
.foo { | |
color: red; | |
} | |
} | |
.bar { | |
color: blue; | |
} | |
@media (min-width: 768px) { | |
.bar { | |
color: gray; | |
} | |
} | |
/* nicht so gut: ausprägungen der klassen sind nicht zusammen */ | |
.foo { | |
color: green; | |
} | |
.bar { | |
color: blue; | |
} | |
@media (min-width: 768px) { | |
.foo { | |
color: red; | |
} | |
.bar { | |
color: gray; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment