<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://codingchoice.com/learn/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://codingchoice.com/learn/feed.php">
        <title>Learning Center - css</title>
        <description></description>
        <link>https://codingchoice.com/learn/</link>
        <image rdf:resource="https://codingchoice.com/learn/_media/logo.png" />
       <dc:date>2026-05-03T10:42:19+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://codingchoice.com/learn/css/animations?rev=1738452094&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/css/box_model?rev=1738454407&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/css/cheatsheet?rev=1740020602&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/css/flexbox?rev=1738451648&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/css/grid?rev=1738451762&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/css/introduction?rev=1738451791&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/css/responsive_web_design?rev=1738454538&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/css/selectors?rev=1738451978&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/css/sidebar?rev=1740020692&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://codingchoice.com/learn/_media/logo.png">
        <title>Learning Center</title>
        <link>https://codingchoice.com/learn/</link>
        <url>https://codingchoice.com/learn/_media/logo.png</url>
    </image>
    <item rdf:about="https://codingchoice.com/learn/css/animations?rev=1738452094&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-01T23:21:34+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>animations</title>
        <link>https://codingchoice.com/learn/css/animations?rev=1738452094&amp;do=diff</link>
        <description>CSS Animations

Creating Simple Animations
CSS allows you to animate HTML elements using @keyframes.


&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;style&gt;
        @keyframes move {
            0% { left: 0px; }
            100% { left: 100px; }
        }
        .animated-box {
            position: relative;
            width: 50px;
            height: 50px;
            background-color: red;
            animation: move 2s infinite alternate;
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div class=&quot;animated…</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/css/box_model?rev=1738454407&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-02T00:00:07+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>box_model</title>
        <link>https://codingchoice.com/learn/css/box_model?rev=1738454407&amp;do=diff</link>
        <description>CSS Box Model

The CSS box model describes how elements are structured in terms of content, padding, border, and margin.


&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;style&gt;
        .box {
            width: 200px;
            padding: 10px;
            border: 5px solid black;
            margin: 20px;
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div class=&quot;box&quot;&gt;This is a box!&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/css/cheatsheet?rev=1740020602&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T03:03:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>cheatsheet</title>
        <link>https://codingchoice.com/learn/css/cheatsheet?rev=1740020602&amp;do=diff</link>
        <description>CSS Cheat Sheet

Selectors

* – Universal selector

element – Type selector (e.g., p, div)

.class – Class selector

#id – ID selector

element, element – Group selector

element element – Descendant selector

element &gt; element – Direct child selector</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/css/flexbox?rev=1738451648&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-01T23:14:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>flexbox</title>
        <link>https://codingchoice.com/learn/css/flexbox?rev=1738451648&amp;do=diff</link>
        <description>CSS Flexbox

Flexbox is a layout model that makes it easy to align and distribute elements within a container.

Example:


&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;style&gt;
        .container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: lightgray;
        }
        .box {
            width: 100px;
            height: 100px;
            background-color: blue;
            color: white;
         …</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/css/grid?rev=1738451762&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-01T23:16:02+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>grid</title>
        <link>https://codingchoice.com/learn/css/grid?rev=1738451762&amp;do=diff</link>
        <description>CSS Grid

CSS Grid is a powerful layout system for designing web pages with rows and columns.

Example:


&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;style&gt;
        .grid-container {
            display: grid;
            grid-template-columns: auto auto auto;
            gap: 10px;
            background-color: lightgray;
            padding: 10px;
        }
        .grid-item {
            background-color: blue;
            color: white;
            padding: 20px;
            text-align: center;
     …</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/css/introduction?rev=1738451791&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-01T23:16:31+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>introduction</title>
        <link>https://codingchoice.com/learn/css/introduction?rev=1738451791&amp;do=diff</link>
        <description>Introduction to CSS

What is CSS?

CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of a document written in HTML. It allows you to control the layout, colors, fonts, and overall appearance of a webpage.

How CSS</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/css/responsive_web_design?rev=1738454538&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-02T00:02:18+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>responsive_web_design</title>
        <link>https://codingchoice.com/learn/css/responsive_web_design?rev=1738454538&amp;do=diff</link>
        <description>Responsive Web Design

Media Queries

Media queries allow CSS to adapt styles based on screen size.

Example:


&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;style&gt;
        body {
            background-color: lightblue;
        }
        @media (max-width: 600px) {
            body {
                background-color: lightcoral;
            }
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;p&gt;Resize the browser to see the background change.&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/css/selectors?rev=1738451978&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-01T23:19:38+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>selectors</title>
        <link>https://codingchoice.com/learn/css/selectors?rev=1738451978&amp;do=diff</link>
        <description>CSS Selectors

Basic Selectors

Element Selector: Targets all instances of an element (e.g., p { color: red; })

Class Selector: Targets elements with a specific class (e.g., .myClass { color: green; })

ID Selector: Targets an element with a specific ID (e.g., #myID { font-size: 20px; })</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/css/sidebar?rev=1740020692&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T03:04:52+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sidebar</title>
        <link>https://codingchoice.com/learn/css/sidebar?rev=1740020692&amp;do=diff</link>
        <description>*  Introduction to CSS
	*  CSS Selectors
	*  CSS Box Model
	*  CSS Flexbox
	*  CSS Grid
	*  CSS Animations
	*  Responsive Web Design
	*  CSS Cheat Sheet</description>
    </item>
</rdf:RDF>
