A Pen by uli schaeffler on CodePen.
Created
May 28, 2025 19:12
-
-
Save ulrischa/3db3e0a138a601fb8923b5f6a2bf4b52 to your computer and use it in GitHub Desktop.
Scope
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
<div class="main-content"> | |
<h2>Hauptinhalts-Titel</h2> | |
<p>Das ist der erste Absatz.</p> | |
<div class="sidebar"> | |
<h2>Sidebar Titel</h2> | |
<p>Inhalt der Sidebar.</p> | |
</div> | |
<p>Das ist der zweite Absatz im Hauptinhalt.</p> | |
</div> |
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
@scope (.main-content) to (.sidebar) { | |
/* Diese Regeln gelten für Elemente innerhalb von .main-content, ABER NICHT für Elemente innerhalb von .sidebar (oder deren Nachfahren) */ | |
h2 { | |
color: teal; /* Beeinflusst nur den h2 im main-content */ | |
} | |
p { | |
font-style: italic; /* Beeinflusst nur die p-Elemente im main-content, NICHT die p-Elemente in der sidebar */ | |
} | |
} | |
/* Globale Styles */ | |
h2 { | |
color: black; | |
} | |
.sidebar p { | |
color: gray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment