Created
July 4, 2021 13:45
-
-
Save jensgro/45f7944853fc4707f304925ee55c181d to your computer and use it in GitHub Desktop.
Manchmal sind BEM-Klassen unnötig.
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
<ul class="navigation"> | |
<li class="navigation__item"> | |
<a href="#" class="navigation__link">Link</a> | |
</li> | |
<li class="navigation__item"> | |
<a href="#" class="navigation__link">Noch ein toller Link</a> | |
</li> | |
<li class="navigation__item"> | |
<a href="#" class="navigation__link">Der ist noch besser!</a> | |
</li> | |
</ul> | |
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
/* geschwätzig */ | |
/* Jede Regel hat eine Spezifität von 010 */ | |
.navigation {} | |
.navigation__item {} | |
.navigation__link {} | |
/* zusammengedampft */ | |
/* Die erste Regel hat eine Spezifität von 010, | |
die beiden letzten eine von 011 */ | |
.navigation {} | |
.navigation li {} | |
.navigation a {} |
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
<ul class="navigation"> | |
<li> | |
<a href="#">Link</a> | |
</li> | |
<li> | |
<a href="#">Noch ein toller Link</a> | |
</li> | |
<li> | |
<a href="#">Der ist noch besser!</a> | |
</li> | |
</ul> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment