<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[👉👉 Important things you should avoid in CSS Style Sheet]]></title><description><![CDATA[<p dir="auto"><img src="https://res.cloudinary.com/css-tricks/image/upload/c_scale,w_1000,f_auto,q_auto/v1493741797/css-ruleset-terminology_ajdmra.png" alt="alt text" class=" img-responsive img-markdown" /></p>
<blockquote></blockquote>
<h3>Avoid put <strong>px</strong> to <strong>0</strong> values.</h3>
<hr />
<p dir="auto">❌ <strong>Wrong</strong></p>
<pre><code>.className {
      padding-top: 0px;
}
</code></pre>
<p dir="auto">✔ <strong>Correct</strong></p>
<pre><code>.className {
      padding-top: 0;
}
</code></pre>
<blockquote></blockquote>
<h3>Optimize styles.</h3>
<hr />
<p dir="auto">❌ <strong>Wrong</strong></p>
<pre><code>.className {
      padding-top: 0;
      padding-right: 5px;
      padding-bottom: 7px;
      padding-left: 10px;
      margin-top: -3px;
      margin-right: -30px;
      margin-bottom: -8px;
      margin-left: -4px;
}
</code></pre>
<p dir="auto">✔ <strong>Correct</strong></p>
<pre><code>.className {
      padding: 0 5px 7px 10px;
      margin: -3px -30px -8px -4px;
}
</code></pre>
<blockquote></blockquote>
<h3>Use <strong>small letters</strong> for <strong>Color Code</strong></h3>
<hr />
<p dir="auto">❌ <strong>Wrong</strong></p>
<pre><code>.className {
      background-color: #6f8CBA;
      color: #FFFFFF;
}
</code></pre>
<p dir="auto">✔ <strong>Correct</strong></p>
<pre><code>.className {
      background-color: #6f8cba;
      color: #ffffff;
}
</code></pre>
<blockquote></blockquote>
<h3>Do not put unwanted <strong>Spaces</strong>,<strong>Line Breaks</strong></h3>
<hr />
<p dir="auto">❌ <strong>Wrong</strong></p>
<pre><code>.className{

      font-size : 15px;
      font-family: sans-serif, arial;

}
</code></pre>
<p dir="auto">✔ <strong>Correct</strong></p>
<pre><code>.className {
      font-size : 15px;
      font-family: sans-serif, arial;
}
</code></pre>
<blockquote></blockquote>
<h3>Do not put <strong>Duplicate</strong> styles</h3>
<hr />
<p dir="auto">❌ <strong>Wrong</strong></p>
<pre><code>.className1 {
      font-size : 15px;
      font-family: sans-serif, arial;
}

.className2 {
      font-size : 15px;
      font-family: sans-serif, arial;
}

.className3 {
      font-size : 15px;
      font-family: sans-serif, arial;
}
</code></pre>
<p dir="auto">✔ <strong>Correct</strong></p>
<pre><code>.className1, .className2, .className3 {
      font-size : 15px;
      font-family: sans-serif, arial;
}
</code></pre>
<blockquote></blockquote>
<h3>Do not create too much <strong>Class names</strong></h3>
<hr />
<p dir="auto">❌ <strong>Wrong</strong></p>
<pre><code>&lt;div class="section-one"&gt;
      &lt;div class="section-one-title"&gt;
           Title 1
      &lt;/div&gt;
&lt;/div&gt;


&lt;div class="section-two"&gt;
      &lt;div class="section-two-title"&gt;
           Title 1
      &lt;/div&gt;
&lt;/div&gt;
</code></pre>
<pre><code>.section-one {
      background-color: #000000;
}

.section-one-title {
      font-size : 15px;
      font-family: sans-serif, arial;
      color: #ffffff;
}

.section-two {
      background-color: #57d675;
}

.section-two-title {
      font-size : 5px;
      font-family: sans-serif, arial;
}
</code></pre>
<p dir="auto">✔ <strong>Correct</strong></p>
<pre><code>&lt;div class="section-one"&gt;
      &lt;div class="title"&gt;
           Title 1
      &lt;/div&gt;
&lt;/div&gt;


&lt;div class="section-two"&gt;
      &lt;div class="title"&gt;
           Title 1
      &lt;/div&gt;
&lt;/div&gt;
</code></pre>
<pre><code>.section-one {
      background-color: #000000;
}

.section-one .title {
      font-size : 15px;
      font-family: sans-serif, arial;
      color: #ffffff;
}

.section-two {
      background-color: #57d675;
}

.section-two .title {
      font-size : 5px;
      font-family: sans-serif, arial;
}
</code></pre>
]]></description><link>https://lankadevelopers.lk/topic/195/important-things-you-should-avoid-in-css-style-sheet</link><generator>RSS for Node</generator><lastBuildDate>Tue, 11 Aug 2026 10:38:08 GMT</lastBuildDate><atom:link href="https://lankadevelopers.lk/topic/195.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 27 Mar 2019 16:36:45 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 👉👉 Important things you should avoid in CSS Style Sheet on Thu, 28 Mar 2019 07:57:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/2">@dev_lak</a> thank you</p>
]]></description><link>https://lankadevelopers.lk/post/1285</link><guid isPermaLink="true">https://lankadevelopers.lk/post/1285</guid><dc:creator><![CDATA[b6]]></dc:creator><pubDate>Thu, 28 Mar 2019 07:57:43 GMT</pubDate></item><item><title><![CDATA[Reply to 👉👉 Important things you should avoid in CSS Style Sheet on Thu, 28 Mar 2019 06:31:05 GMT]]></title><description><![CDATA[<p dir="auto">very usefull <a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/625">@b6</a></p>
]]></description><link>https://lankadevelopers.lk/post/1284</link><guid isPermaLink="true">https://lankadevelopers.lk/post/1284</guid><dc:creator><![CDATA[dev_lak]]></dc:creator><pubDate>Thu, 28 Mar 2019 06:31:05 GMT</pubDate></item><item><title><![CDATA[Reply to 👉👉 Important things you should avoid in CSS Style Sheet on Thu, 28 Mar 2019 06:26:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/27">@root</a> ✌✌</p>
]]></description><link>https://lankadevelopers.lk/post/1283</link><guid isPermaLink="true">https://lankadevelopers.lk/post/1283</guid><dc:creator><![CDATA[b6]]></dc:creator><pubDate>Thu, 28 Mar 2019 06:26:30 GMT</pubDate></item><item><title><![CDATA[Reply to 👉👉 Important things you should avoid in CSS Style Sheet on Thu, 28 Mar 2019 06:26:17 GMT]]></title><description><![CDATA[<p dir="auto">@Malith 😊😊</p>
]]></description><link>https://lankadevelopers.lk/post/1282</link><guid isPermaLink="true">https://lankadevelopers.lk/post/1282</guid><dc:creator><![CDATA[b6]]></dc:creator><pubDate>Thu, 28 Mar 2019 06:26:17 GMT</pubDate></item><item><title><![CDATA[Reply to 👉👉 Important things you should avoid in CSS Style Sheet on Thu, 28 Mar 2019 04:58:54 GMT]]></title><description><![CDATA[<p dir="auto">Nice post b6, valuable information.</p>
]]></description><link>https://lankadevelopers.lk/post/1281</link><guid isPermaLink="true">https://lankadevelopers.lk/post/1281</guid><dc:creator><![CDATA[root]]></dc:creator><pubDate>Thu, 28 Mar 2019 04:58:54 GMT</pubDate></item><item><title><![CDATA[Reply to 👉👉 Important things you should avoid in CSS Style Sheet on Thu, 28 Mar 2019 04:57:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/625">@b6</a>  Thank you Bro</p>
]]></description><link>https://lankadevelopers.lk/post/1280</link><guid isPermaLink="true">https://lankadevelopers.lk/post/1280</guid><dc:creator><![CDATA[Nubelle]]></dc:creator><pubDate>Thu, 28 Mar 2019 04:57:19 GMT</pubDate></item></channel></rss>