Skip to content

Instantly share code, notes, and snippets.

@ulrischa
Created May 28, 2025 19:12
Show Gist options
  • Save ulrischa/3db3e0a138a601fb8923b5f6a2bf4b52 to your computer and use it in GitHub Desktop.
Save ulrischa/3db3e0a138a601fb8923b5f6a2bf4b52 to your computer and use it in GitHub Desktop.
Scope
<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>
@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