<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.linepup.com/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.linepup.com/feed.php">
        <title>Linepup Wiki - css</title>
        <description></description>
        <link>https://wiki.linepup.com/</link>
        <image rdf:resource="https://wiki.linepup.com/lib/exe/fetch.php?media=logo.png" />
       <dc:date>2026-05-07T23:11:40+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.linepup.com/doku.php?id=css:combinators&amp;rev=1778183916&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.linepup.com/doku.php?id=css:selectors&amp;rev=1778184121&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.linepup.com/doku.php?id=css:start&amp;rev=1778184888&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.linepup.com/doku.php?id=css:transform&amp;rev=1778186811&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.linepup.com/lib/exe/fetch.php?media=logo.png">
        <title>Linepup Wiki</title>
        <link>https://wiki.linepup.com/</link>
        <url>https://wiki.linepup.com/lib/exe/fetch.php?media=logo.png</url>
    </image>
    <item rdf:about="https://wiki.linepup.com/doku.php?id=css:combinators&amp;rev=1778183916&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-05-07T19:58:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>CSS: Combinators</title>
        <link>https://wiki.linepup.com/doku.php?id=css:combinators&amp;rev=1778183916&amp;do=diff</link>
        <description>CSS: Combinators

Adjacent Sibling

The adjacent sibling combinator (+) separates two selectors and matches the second element only if it immediately follows the first element, and both are children of the same parent element.


/* Paragraphs that come immediately after any image */
img + p {}</description>
    </item>
    <item rdf:about="https://wiki.linepup.com/doku.php?id=css:selectors&amp;rev=1778184121&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-05-07T20:02:01+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>CSS: Selectors</title>
        <link>https://wiki.linepup.com/doku.php?id=css:selectors&amp;rev=1778184121&amp;do=diff</link>
        <description>CSS: Selectors

Attribute

The CSS attribute selector matches elements based on the presence or value of a given attribute.


/* &lt;a&gt; elements with a title attribute */
a[title] {}

/* &lt;a&gt; elements with an href matching &quot;&lt;https://example.org&gt;&quot; */
a[href=&quot;&lt;https://example.org&gt;&quot;] {}

/* &lt;a&gt; elements with an href containing &quot;example&quot; */
a[href*=&quot;example&quot;] {}

/* &lt;a&gt; elements with an href ending &quot;.org&quot; */
a[href$=&quot;.org&quot;] {}

/* &lt;a&gt; elements whose class attribute contains the word &quot;logo&quot; */
a[class~=&quot;…</description>
    </item>
    <item rdf:about="https://wiki.linepup.com/doku.php?id=css:start&amp;rev=1778184888&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-05-07T20:14:48+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>CSS</title>
        <link>https://wiki.linepup.com/doku.php?id=css:start&amp;rev=1778184888&amp;do=diff</link>
        <description>CSS

	*  Combinators
	*  Selectors
	*  Transform</description>
    </item>
    <item rdf:about="https://wiki.linepup.com/doku.php?id=css:transform&amp;rev=1778186811&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-05-07T20:46:51+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>CSS: Transform</title>
        <link>https://wiki.linepup.com/doku.php?id=css:transform&amp;rev=1778186811&amp;do=diff</link>
        <description>CSS: Transform

translate

transform: translate(20px, 50px);

Moves an element according the specified x and y values. The example moves the element 20px to the right and 50 pixels down.

rotate

transform: rotate(20deg);

Rotates an element clockwise or counter clockwise according to specified degree. The example rotates the element 20 degrees.</description>
    </item>
</rdf:RDF>
