<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: CSS Lint open sourced</title>
	<atom:link href="http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/</link>
	<description>A Term of Endearment</description>
	<lastBuildDate>Mon, 07 May 2012 17:31:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Jaime</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-20027</link>
		<dc:creator>Jaime</dc:creator>
		<pubDate>Wed, 24 Aug 2011 11:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-20027</guid>
		<description>Hi, Nicole and everyone!

I&#039;m eagerly waiting from June 15th to grab your Velocity 2011 slides. I&#039;ve looked at Slideshare but don&#039;t find them. Could it be possible to have them?

Thanks in advance and keep oocssing, great job!</description>
		<content:encoded><![CDATA[<p>Hi, Nicole and everyone!</p>
<p>I&#8217;m eagerly waiting from June 15th to grab your Velocity 2011 slides. I&#8217;ve looked at Slideshare but don&#8217;t find them. Could it be possible to have them?</p>
<p>Thanks in advance and keep oocssing, great job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-20001</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Thu, 07 Jul 2011 15:09:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-20001</guid>
		<description>Hi I like CSSLint very much. It&#039;s a cool idea to controll your CSS code. For optimizing the CSS filesize I build a CSS minifier: http://csslift.smashingninja.com/</description>
		<content:encoded><![CDATA[<p>Hi I like CSSLint very much. It&#8217;s a cool idea to controll your CSS code. For optimizing the CSS filesize I build a CSS minifier: <a href="http://csslift.smashingninja.com/" rel="nofollow">http://csslift.smashingninja.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Hopley</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-19993</link>
		<dc:creator>Mike Hopley</dc:creator>
		<pubDate>Tue, 05 Jul 2011 13:28:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-19993</guid>
		<description>@Justin:

Floats: you can float as many HTML elements as you like, and CSS Lint won&#039;t care. The problem comes when you&#039;re repeating the same CSS code (float declarations) again and again. Use a class instead. What you described sounds like a media block object, so write the code for making a media block. Write it *once*, and reuse it.

Headings: &quot;.aside h6 { }&quot; is location-specific styling. If you do it this way, your styles become less predictable (because they vary depending on location). You also have to keep declaring new exceptions when you want the same styling in a different location. This doesn&#039;t scale well.

Use a class instead. Let&#039;s say you want this h6 to look the same as your standard h4. Simply add a .h4 class. When you write your main heading styles, just add a corresponding class. For example:

h4, .h4 { 
/* level-4 heading styles go here */
}</description>
		<content:encoded><![CDATA[<p>@Justin:</p>
<p>Floats: you can float as many HTML elements as you like, and CSS Lint won&#8217;t care. The problem comes when you&#8217;re repeating the same CSS code (float declarations) again and again. Use a class instead. What you described sounds like a media block object, so write the code for making a media block. Write it *once*, and reuse it.</p>
<p>Headings: &#8220;.aside h6 { }&#8221; is location-specific styling. If you do it this way, your styles become less predictable (because they vary depending on location). You also have to keep declaring new exceptions when you want the same styling in a different location. This doesn&#8217;t scale well.</p>
<p>Use a class instead. Let&#8217;s say you want this h6 to look the same as your standard h4. Simply add a .h4 class. When you write your main heading styles, just add a corresponding class. For example:</p>
<p>h4, .h4 {<br />
/* level-4 heading styles go here */<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-19985</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Fri, 01 Jul 2011 22:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-19985</guid>
		<description>Can you please explain the limit on floats rule?  How is that bad?
Many times I have an icon followed by some text.  To get the text to line up with the icon/image then I float the image and adjust it with margin to the top and right.

I don&#039;t get the consistent headings across a site.
Many times I create page class, article class and aside classes for my page structure and then I&#039;ll have use the different headings in the different sections, for example if h1-h6 is used in my .article class and I want something of the same size in the .aside section a different color then I&#039;ll do an .aside h6 { } to change the color or other attributes.

Thanks,

j</description>
		<content:encoded><![CDATA[<p>Can you please explain the limit on floats rule?  How is that bad?<br />
Many times I have an icon followed by some text.  To get the text to line up with the icon/image then I float the image and adjust it with margin to the top and right.</p>
<p>I don&#8217;t get the consistent headings across a site.<br />
Many times I create page class, article class and aside classes for my page structure and then I&#8217;ll have use the different headings in the different sections, for example if h1-h6 is used in my .article class and I want something of the same size in the .aside section a different color then I&#8217;ll do an .aside h6 { } to change the color or other attributes.</p>
<p>Thanks,</p>
<p>j</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kars</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-19980</link>
		<dc:creator>Kars</dc:creator>
		<pubDate>Thu, 30 Jun 2011 17:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-19980</guid>
		<description>Excellent project! First impressions: 
At first it didn&#039;t seem to work on my stylesheet (finding 0 errors), but when I removed the @font-face rules for webfonts at the start of the stylesheet, then CSS Lint was giving me a nice list of errors and warnings that I still have to go through. 

* Please check if multiple webfont implication like this gives problems:
@font-face {
    font-family: &#039;CharisSILRegular&#039;;
    src: url(&#039;../fonts/CharisSIL/CharisSILR-webfont.eot&#039;);
    src: url(&#039;../fonts/CharisSIL/CharisSILR-webfont.eot?#iefix&#039;) format(&#039;embedded-opentype&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILR-webfont.woff&#039;) format(&#039;woff&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILR-webfont.ttf&#039;) format(&#039;truetype&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILR-webfont.svg#CharisSILRegular&#039;) format(&#039;svg&#039;);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: &#039;CharisSILItalic&#039;;
    src: url(&#039;../fonts/CharisSIL/CharisSILI-webfont.eot&#039;);
    src: url(&#039;../fonts/CharisSIL/CharisSILI-webfont.eot?#iefix&#039;) format(&#039;embedded-opentype&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILI-webfont.woff&#039;) format(&#039;woff&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILI-webfont.ttf&#039;) format(&#039;truetype&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILI-webfont.svg#CharisSILItalic&#039;) format(&#039;svg&#039;);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: &#039;CharisSILBold&#039;;
    src: url(&#039;../fonts/CharisSIL/CharisSILB-webfont.eot&#039;);
    src: url(&#039;../fonts/CharisSIL/CharisSILB-webfont.eot?#iefix&#039;) format(&#039;embedded-opentype&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILB-webfont.woff&#039;) format(&#039;woff&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILB-webfont.ttf&#039;) format(&#039;truetype&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILB-webfont.svg#CharisSILBold&#039;) format(&#039;svg&#039;);
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: &#039;CharisSILBoldItalic&#039;;
    src: url(&#039;../fonts/CharisSIL/CharisSILBI-webfont.eot&#039;);
    src: url(&#039;../fonts/CharisSIL/CharisSILBI-webfont.eot?#iefix&#039;) format(&#039;embedded-opentype&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILBI-webfont.woff&#039;) format(&#039;woff&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILBI-webfont.ttf&#039;) format(&#039;truetype&#039;),
         url(&#039;../fonts/CharisSIL/CharisSILBI-webfont.svg#CharisSILBoldItalic&#039;) format(&#039;svg&#039;);
    font-weight: normal;
    font-style: normal;

}

* Alot of errors came from media queries. e.g.:
  Expected LBRACE at line 1861, character 8.
  @media (min-width:711px) and (max-width:1024px) {

* Expected RBRACE at line 1827, character 3.
  @page { margin: 0.5cm; }

* The line numbering was far off

* Also it would be nice if the logo header was clickable and leading to the homepage. Thanks for the service. I&#039;m gonna check my</description>
		<content:encoded><![CDATA[<p>Excellent project! First impressions:<br />
At first it didn&#8217;t seem to work on my stylesheet (finding 0 errors), but when I removed the @font-face rules for webfonts at the start of the stylesheet, then CSS Lint was giving me a nice list of errors and warnings that I still have to go through. </p>
<p>* Please check if multiple webfont implication like this gives problems:<br />
@font-face {<br />
    font-family: &#8216;CharisSILRegular&#8217;;<br />
    src: url(&#8216;../fonts/CharisSIL/CharisSILR-webfont.eot&#8217;);<br />
    src: url(&#8216;../fonts/CharisSIL/CharisSILR-webfont.eot?#iefix&#8217;) format(&#8216;embedded-opentype&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILR-webfont.woff&#8217;) format(&#8216;woff&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILR-webfont.ttf&#8217;) format(&#8216;truetype&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILR-webfont.svg#CharisSILRegular&#8217;) format(&#8216;svg&#8217;);<br />
    font-weight: normal;<br />
    font-style: normal;<br />
}</p>
<p>@font-face {<br />
    font-family: &#8216;CharisSILItalic&#8217;;<br />
    src: url(&#8216;../fonts/CharisSIL/CharisSILI-webfont.eot&#8217;);<br />
    src: url(&#8216;../fonts/CharisSIL/CharisSILI-webfont.eot?#iefix&#8217;) format(&#8216;embedded-opentype&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILI-webfont.woff&#8217;) format(&#8216;woff&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILI-webfont.ttf&#8217;) format(&#8216;truetype&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILI-webfont.svg#CharisSILItalic&#8217;) format(&#8216;svg&#8217;);<br />
    font-weight: normal;<br />
    font-style: normal;<br />
}</p>
<p>@font-face {<br />
    font-family: &#8216;CharisSILBold&#8217;;<br />
    src: url(&#8216;../fonts/CharisSIL/CharisSILB-webfont.eot&#8217;);<br />
    src: url(&#8216;../fonts/CharisSIL/CharisSILB-webfont.eot?#iefix&#8217;) format(&#8216;embedded-opentype&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILB-webfont.woff&#8217;) format(&#8216;woff&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILB-webfont.ttf&#8217;) format(&#8216;truetype&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILB-webfont.svg#CharisSILBold&#8217;) format(&#8216;svg&#8217;);<br />
    font-weight: normal;<br />
    font-style: normal;</p>
<p>}</p>
<p>@font-face {<br />
    font-family: &#8216;CharisSILBoldItalic&#8217;;<br />
    src: url(&#8216;../fonts/CharisSIL/CharisSILBI-webfont.eot&#8217;);<br />
    src: url(&#8216;../fonts/CharisSIL/CharisSILBI-webfont.eot?#iefix&#8217;) format(&#8216;embedded-opentype&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILBI-webfont.woff&#8217;) format(&#8216;woff&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILBI-webfont.ttf&#8217;) format(&#8216;truetype&#8217;),<br />
         url(&#8216;../fonts/CharisSIL/CharisSILBI-webfont.svg#CharisSILBoldItalic&#8217;) format(&#8216;svg&#8217;);<br />
    font-weight: normal;<br />
    font-style: normal;</p>
<p>}</p>
<p>* Alot of errors came from media queries. e.g.:<br />
  Expected LBRACE at line 1861, character 8.<br />
  @media (min-width:711px) and (max-width:1024px) {</p>
<p>* Expected RBRACE at line 1827, character 3.<br />
  @page { margin: 0.5cm; }</p>
<p>* The line numbering was far off</p>
<p>* Also it would be nice if the logo header was clickable and leading to the homepage. Thanks for the service. I&#8217;m gonna check my</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juliana</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-19961</link>
		<dc:creator>Juliana</dc:creator>
		<pubDate>Mon, 20 Jun 2011 01:21:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-19961</guid>
		<description>I have a question regarding heading styles.
Say h1-h6 will have the same font-family, but different font-sizes, is it really wrong to do so:

h1, h2, h3, h4, h5, h6{font-family: &#039;font-family&#039;;}
h1{font-size: x;}
...
h6{font-size:y;}


Or it would be better to declare font-family separately for each heading even if they are the same?
If so, why?


Thanks! (:</description>
		<content:encoded><![CDATA[<p>I have a question regarding heading styles.<br />
Say h1-h6 will have the same font-family, but different font-sizes, is it really wrong to do so:</p>
<p>h1, h2, h3, h4, h5, h6{font-family: &#8216;font-family&#8217;;}<br />
h1{font-size: x;}<br />
&#8230;<br />
h6{font-size:y;}</p>
<p>Or it would be better to declare font-family separately for each heading even if they are the same?<br />
If so, why?</p>
<p>Thanks! (:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lieuwe</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-19960</link>
		<dc:creator>Lieuwe</dc:creator>
		<pubDate>Mon, 20 Jun 2011 00:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-19960</guid>
		<description>CSS lint is nice! Great work!

I wondered: did I spot an error? Underneath my 392 warnings and 1 error, there was a bit of content which begins with &quot;55 lines 1 errors 392 warnings&quot;. It displayed what I think is the example code instead of (what I expect it should do) my own CSS which was 1323 lines long. Is this feature an error or a feature? For debugging reasons I made a screenshot of the thing. If you want it, I can send it to you.

But anyway: Great work! It&#039;s a good thing this CSSlint is here and performing so well! Thanks a lot!</description>
		<content:encoded><![CDATA[<p>CSS lint is nice! Great work!</p>
<p>I wondered: did I spot an error? Underneath my 392 warnings and 1 error, there was a bit of content which begins with &#8220;55 lines 1 errors 392 warnings&#8221;. It displayed what I think is the example code instead of (what I expect it should do) my own CSS which was 1323 lines long. Is this feature an error or a feature? For debugging reasons I made a screenshot of the thing. If you want it, I can send it to you.</p>
<p>But anyway: Great work! It&#8217;s a good thing this CSSlint is here and performing so well! Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Открыт код системы для проверки корректности оформления CSS-файлов&#160;&#124;&#160;AllUNIX.ru &#8211; Всероссийский портал о UNIX-системах</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-19957</link>
		<dc:creator>Открыт код системы для проверки корректности оформления CSS-файлов&#160;&#124;&#160;AllUNIX.ru &#8211; Всероссийский портал о UNIX-системах</dc:creator>
		<pubDate>Fri, 17 Jun 2011 22:19:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-19957</guid>
		<description>[...] Открыт исходный код online-сервиса CSS Lint, позволяющего выполнить анализ CSS-блоков с целью выявления возможных проблем. Система проверяет корректность синтаксиса CSS, пытается выявить использование неэффективных конструкций и недопустимых сочетаний параметров, определяет типичные логические ошибки и элементы, которые вызывают проблемы в определенных браузерах. CSS Lint поддерживает подключение дополнений, что может быть использовано для написания собственных модулей для выполнения дополнительных проверок. [...]</description>
		<content:encoded><![CDATA[<p>[...] Открыт исходный код online-сервиса CSS Lint, позволяющего выполнить анализ CSS-блоков с целью выявления возможных проблем. Система проверяет корректность синтаксиса CSS, пытается выявить использование неэффективных конструкций и недопустимых сочетаний параметров, определяет типичные логические ошибки и элементы, которые вызывают проблемы в определенных браузерах. CSS Lint поддерживает подключение дополнений, что может быть использовано для написания собственных модулей для выполнения дополнительных проверок. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Hopley</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-19954</link>
		<dc:creator>Mike Hopley</dc:creator>
		<pubDate>Fri, 17 Jun 2011 14:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-19954</guid>
		<description>@Nicole -- done!

And here&#039;s one more (also gitted):

I&#039;m hearing some concern in the community that CSS Lint is &quot;forcing Nicole&#039;s OOCSS beliefs on designers, by stealth&quot;. I don&#039;t agree (you&#039;re not forcing anyone!), but it might be helpful to make the connection between the CSS Lint and OOCSS clearer. I can&#039;t see any reference to OOCSS on the CSS Lint website.</description>
		<content:encoded><![CDATA[<p>@Nicole &#8212; done!</p>
<p>And here&#8217;s one more (also gitted):</p>
<p>I&#8217;m hearing some concern in the community that CSS Lint is &#8220;forcing Nicole&#8217;s OOCSS beliefs on designers, by stealth&#8221;. I don&#8217;t agree (you&#8217;re not forcing anyone!), but it might be helpful to make the connection between the CSS Lint and OOCSS clearer. I can&#8217;t see any reference to OOCSS on the CSS Lint website.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicole Sullivan</title>
		<link>http://www.stubbornella.org/content/2011/06/15/css-lint-open-sourced/comment-page-1/#comment-19950</link>
		<dc:creator>Nicole Sullivan</dc:creator>
		<pubDate>Thu, 16 Jun 2011 19:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.stubbornella.org/content/?p=820#comment-19950</guid>
		<description>@Mike Hopley - excellent suggestions, can you open github issues for that?</description>
		<content:encoded><![CDATA[<p>@Mike Hopley &#8211; excellent suggestions, can you open github issues for that?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Served from: www.stubbornella.org @ 2012-05-16 18:54:53 by W3 Total Cache -->
