<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.bzz.ch/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.bzz.ch/feed.php">
        <title>BZZ - Modulwiki - de:modul:m287:learningunits:lu02:loesungen</title>
        <description></description>
        <link>https://wiki.bzz.ch/</link>
        <image rdf:resource="https://wiki.bzz.ch/_media/wiki/logo.png" />
       <dc:date>2026-04-07T14:54:07+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.bzz.ch/de/modul/m287/learningunits/lu02/loesungen/pseudo-klassen?rev=1773991559&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.bzz.ch/de/modul/m287/learningunits/lu02/loesungen/uebungen?rev=1769507377&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.bzz.ch/de/modul/m287/learningunits/lu02/loesungen/universalselektoren?rev=1769507377&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.bzz.ch/_media/wiki/logo.png">
        <title>BZZ - Modulwiki</title>
        <link>https://wiki.bzz.ch/</link>
        <url>https://wiki.bzz.ch/_media/wiki/logo.png</url>
    </image>
    <item rdf:about="https://wiki.bzz.ch/de/modul/m287/learningunits/lu02/loesungen/pseudo-klassen?rev=1773991559&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-20T07:25:59+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU02.L03 - Pseudo-Klassen</title>
        <link>https://wiki.bzz.ch/de/modul/m287/learningunits/lu02/loesungen/pseudo-klassen?rev=1773991559&amp;do=diff</link>
        <description>LU02.L03 - Pseudo-Klassen

Aufgabe 1: Theoriefragen zu Pseudo-Klassen

Beantworten Sie die folgenden Fragen zu CSS-Pseudo-Klassen:

1. Was ist eine CSS-Pseudo-Klasse? Erkläre den Unterschied zwischen einer normalen Klasse und einer Pseudo-Klasse?

	*</description>
    </item>
    <item rdf:about="https://wiki.bzz.ch/de/modul/m287/learningunits/lu02/loesungen/uebungen?rev=1769507377&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-01-27T09:49:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU02.L01 - Übungen zu einfachen CSS-Selektoren</title>
        <link>https://wiki.bzz.ch/de/modul/m287/learningunits/lu02/loesungen/uebungen?rev=1769507377&amp;do=diff</link>
        <description>LU02.L01 - Übungen zu einfachen CSS-Selektoren

HTML


&lt;!doctype html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Klassenselektor&lt;/title&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;link href=&quot;css/style.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;header&gt;Kopfzeile&lt;/header&gt;
    &lt;nav&gt;Navigation&lt;/nav&gt;
    &lt;h1&gt;Klassenselektor&lt;/h1&gt;
    &lt;p&gt;1. Absatz&lt;/p&gt;
    &lt;p class=&quot;remark&quot;&gt;2. Absatz&lt;/p&gt;
    &lt;p class=&quot;remark warning&quot;&gt;3. Absatz&lt;/p&gt;
    &lt;p class=&quot;warning&quot;&gt;4. Absatz&lt;/p&gt;
    &lt;footer&gt;Fusszeile&lt;/footer&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
    </item>
    <item rdf:about="https://wiki.bzz.ch/de/modul/m287/learningunits/lu02/loesungen/universalselektoren?rev=1769507377&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-01-27T09:49:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LU02.L02 - Universalselektoren</title>
        <link>https://wiki.bzz.ch/de/modul/m287/learningunits/lu02/loesungen/universalselektoren?rev=1769507377&amp;do=diff</link>
        <description>LU02.L02 - Universalselektoren


* {
    margin: 5px;
    padding: 3px;
    border: 1px dotted black;
    text-align: center;
}

body {
    font-family: Arial;
}

header, footer * {
    background-color: cornflowerblue;
}

main * {
    background-color: lawngreen;
}

nav {
    background-color: gold;
}

nav * {
    background-color: orangered;
}</description>
    </item>
</rdf:RDF>
