<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>CSSGRID &amp;mdash; furycd001</title>
    <link>https://write.as/furycd001/tag:CSSGRID</link>
    <description></description>
    <pubDate>Tue, 01 Sep 2026 07:45:00 +0000</pubDate>
    <item>
      <title>CSS Grid</title>
      <link>https://write.as/furycd001/css-grid?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[alt text&#xA;&#xA;CSS Grid is a CSS layout which has a two-dimensional system and can handle both rows &amp; columns. The basics are that you apply CSS rules to both the parent element and to the element&#39;s children. The parent elements become the grid containers, and the children become items within the grid. Though CSS Grid is two-dimensional it can still do pretty much do everything the same as Flexbox. Some people though may still try and say that CSS Grid is only good for multi-dimensional layouts. This is far from true as CSS Grid is just as great at one-dimensional layouts as it is with multi-dimensional. Below is a basic example showing you that all you need to get started is pretty minimal and easy to understand.&#xA;&#xA;HTML&#xA;~html&#xA;div class=”wrapper”&#xA;  div class=”item”1/div&#xA;  div class=”item”2/div&#xA;  div class=”item”3/div&#xA;  div class=”item”4/div&#xA;  div class=”item”5/div&#xA;  div class=”item”6/div&#xA;  div class=”item”7/div &#xA;  div class=”item”8/div&#xA;/div&#xA;~&#xA;&#xA;CSS&#xA;~css&#xA;.wrapper {&#xA;  display: grid;&#xA;  grid-template-columns: 8rem 8rem 8rem;&#xA;  grid-gap: 2rem;&#xA;}&#xA;~&#xA;There&#39;s plenty of useful resources that can be found online if you ever need help while using CSS Grid. Click here to search for some....&#xA;&#xA;----&#xA;#HTML #CSS #CSSGRID #www #web]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.imgur.com/JAwH5aE.jpg" alt="alt text" title="CSS Grid"/></p>

<p>CSS Grid is a CSS layout which has a two-dimensional system and can handle both rows &amp; columns. The basics are that you apply CSS rules to both the parent element and to the element&#39;s children. The parent elements become the grid containers, and the children become items within the grid. Though CSS Grid is two-dimensional it can still do pretty much do everything the same as Flexbox. Some people though may still try and say that CSS Grid is only good for multi-dimensional layouts. This is far from true as CSS Grid is just as great at one-dimensional layouts as it is with multi-dimensional. Below is a basic example showing you that all you need to get started is pretty minimal and easy to understand.</p>

<h2 id="html">HTML</h2>

<pre><code class="language-html">&lt;div class=”wrapper”&gt;
  &lt;div class=”item”&gt;1&lt;/div&gt;
  &lt;div class=”item”&gt;2&lt;/div&gt;
  &lt;div class=”item”&gt;3&lt;/div&gt;
  &lt;div class=”item”&gt;4&lt;/div&gt;
  &lt;div class=”item”&gt;5&lt;/div&gt;
  &lt;div class=”item”&gt;6&lt;/div&gt;
  &lt;div class=”item”&gt;7&lt;/div&gt; 
  &lt;div class=”item”&gt;8&lt;/div&gt;
&lt;/div&gt;
</code></pre>

<h2 id="css">CSS</h2>

<pre><code class="language-css">.wrapper {
  display: grid;
  grid-template-columns: 8rem 8rem 8rem;
  grid-gap: 2rem;
}
</code></pre>

<p>There&#39;s plenty of useful resources that can be found online if you ever need help while using CSS Grid. <a href="https://duckduckgo.com/?q=css+grid+resources&amp;ia=web" rel="nofollow">Click here to search for some....</a></p>

<hr/>

<p><a href="https://write.as/furycd001/tag:HTML" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">HTML</span></a> <a href="https://write.as/furycd001/tag:CSS" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CSS</span></a> <a href="https://write.as/furycd001/tag:CSSGRID" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CSSGRID</span></a> <a href="https://write.as/furycd001/tag:www" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">www</span></a> <a href="https://write.as/furycd001/tag:web" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">web</span></a></p>
]]></content:encoded>
      <guid>https://write.as/furycd001/css-grid</guid>
      <pubDate>Wed, 20 Feb 2019 15:27:37 +0000</pubDate>
    </item>
  </channel>
</rss>