[CSS] Korrigiere falsche Kontextbeschreibung

Die Beschreibung des Kontextselektors ">" war falsch beschrieben.
This commit is contained in:
Andre Meyering 2017-07-29 16:41:43 +02:00
parent 9eaa3170d8
commit d6f3d93601

View file

@ -339,9 +339,9 @@ Deswegen ist folgendes besser: \css{ol \{ list-style-type: decimal; \}}
\begin{tabular}{ll}
\code{ol li \{\ldots \}} & $\Rightarrow$ gilt für alle \html{<li>}-Nachfolger eines \html{<ol>} \\
\code{ol > li \{\ldots \}} & $\Rightarrow$ gilt für alle \textit{direkten} \html{<li>}-Nachfolger eines \html{<ol>} \\
\code{ol > li \{\ldots \}} & $\Rightarrow$ gilt für alle \textit{direkten} \html{<li>}-Kinder eines \html{<ol>} (keine Kindeskinder) \\
\code{h1 \circa{} p \{\ldots \}} & $\Rightarrow$ gilt für \html{<p>}, wenn es einen vorangegangenen Geschwisterknoten \html{<h1>} gibt. \\
\code{h1 + p \{ \ldots \}} & $\Rightarrow$ gilt für \html{<p>}, wenn es einen direkten Vorgänger \html{<h1>} gibt. \\
\code{h1 + p \{ \ldots \}} & $\Rightarrow$ gilt für alle \html{<p>}, die einen direkten Vorgänger \html{<h1>} haben. \\
\end{tabular}
\medskip