<?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: How to use Modernizr</title>
	<atom:link href="http://webdesignernotebook.com/css/how-to-use-modernizr/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdesignernotebook.com/css/how-to-use-modernizr/</link>
	<description>Web Designer Notebook is a blog for web designers featuring topics like CSS, HTML and Wordpress, tutorials, reviews and inspiration.</description>
	<lastBuildDate>Fri, 11 May 2012 06:32:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: David Kartuzinski</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-141593</link>
		<dc:creator>David Kartuzinski</dc:creator>
		<pubDate>Mon, 07 May 2012 09:04:10 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-141593</guid>
		<description>Thanks for your answer.  I appreciate your time on this.

I will check by often!

-DK</description>
		<content:encoded><![CDATA[<p>Thanks for your answer.  I appreciate your time on this.</p>
<p>I will check by often!</p>
<p>-DK</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarun Sharma</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-141534</link>
		<dc:creator>Tarun Sharma</dc:creator>
		<pubDate>Mon, 07 May 2012 05:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-141534</guid>
		<description>Yep you are right, Selectivizr is only to support lower browser.

Ya i use it because i want my design should look as closer as possible in modern browser and in old browsers.

for example: suppose we do have a section where i do have 3 rows 5 columns created by  and we need 5px right margin in it.

In that case we need to use nth-child to remove margin from every  in 5th(last) column.

Selectivizr make my work easy otherwise i do need to put a class in every  in 5th column and in case if it&#039;s dynamic. Then you can imagine it&#039;s not good way to add class manually :)


Thanks</description>
		<content:encoded><![CDATA[<p>Yep you are right, Selectivizr is only to support lower browser.</p>
<p>Ya i use it because i want my design should look as closer as possible in modern browser and in old browsers.</p>
<p>for example: suppose we do have a section where i do have 3 rows 5 columns created by  and we need 5px right margin in it.</p>
<p>In that case we need to use nth-child to remove margin from every  in 5th(last) column.</p>
<p>Selectivizr make my work easy otherwise i do need to put a class in every  in 5th column and in case if it&#8217;s dynamic. Then you can imagine it&#8217;s not good way to add class manually :)</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandan Kumar</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-141485</link>
		<dc:creator>Chandan Kumar</dc:creator>
		<pubDate>Mon, 07 May 2012 03:22:19 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-141485</guid>
		<description>yalli use for round corner 
in i.e

behavior:url (border-radius.htc); 
file</description>
		<content:encoded><![CDATA[<p>yalli use for round corner<br />
in i.e</p>
<p>behavior:url (border-radius.htc);<br />
file</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Kartuzinski</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-141390</link>
		<dc:creator>David Kartuzinski</dc:creator>
		<pubDate>Sun, 06 May 2012 22:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-141390</guid>
		<description>Thank you.  Seems obvious now, but for some reason I was seeing this.  Would agree that there would be very little reason to add Selectivizr unless you HAD to support the lower IE 6-8 and were coding structural things with the various selectors?

Do you use Selectivizr in your websites?

Thanks, again.

-DK</description>
		<content:encoded><![CDATA[<p>Thank you.  Seems obvious now, but for some reason I was seeing this.  Would agree that there would be very little reason to add Selectivizr unless you HAD to support the lower IE 6-8 and were coding structural things with the various selectors?</p>
<p>Do you use Selectivizr in your websites?</p>
<p>Thanks, again.</p>
<p>-DK</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarun Sharma</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-141265</link>
		<dc:creator>Tarun Sharma</dc:creator>
		<pubDate>Sun, 06 May 2012 14:59:15 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-141265</guid>
		<description>Hye David!!

Both libraries are totally different. Selectivizr use to support selectors for old browsers, and Modernizr use for HTML5 and CSS3.

Selectivizr use to support tags for example.

#something &gt; div:nth-child(2n) {
}

Now as you may know &#039;&gt;&#039; and &#039;nth-child&#039; not support in IE6, but by Selectivizr it&#039;ll start work on IE6 too.

Modernizr use to support HTML5 tags : header, footer, section, in old browsers by googlesim script. Modernizr also use for conditions to check if any particular HTML5 API, or any CSS3 support in any browser or not. For example:

.no-boxshadow #something {
// declaration goes here will apply only in browser boxshadow not support
}

or you can check in javascript:

if(Modernizr.video) {
// Modernizr.video return true only if browser support HTML5 video
}</description>
		<content:encoded><![CDATA[<p>Hye David!!</p>
<p>Both libraries are totally different. Selectivizr use to support selectors for old browsers, and Modernizr use for HTML5 and CSS3.</p>
<p>Selectivizr use to support tags for example.</p>
<p>#something &gt; div:nth-child(2n) {<br />
}</p>
<p>Now as you may know &#8216;&gt;&#8217; and &#8216;nth-child&#8217; not support in IE6, but by Selectivizr it&#8217;ll start work on IE6 too.</p>
<p>Modernizr use to support HTML5 tags : header, footer, section, in old browsers by googlesim script. Modernizr also use for conditions to check if any particular HTML5 API, or any CSS3 support in any browser or not. For example:</p>
<p>.no-boxshadow #something {<br />
// declaration goes here will apply only in browser boxshadow not support<br />
}</p>
<p>or you can check in javascript:</p>
<p>if(Modernizr.video) {<br />
// Modernizr.video return true only if browser support HTML5 video<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Kartuzinski</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-141257</link>
		<dc:creator>David Kartuzinski</dc:creator>
		<pubDate>Sun, 06 May 2012 14:19:49 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-141257</guid>
		<description>Hi! Can you explain the difference between Modernizr and Selectivizr.  It seems to me, that Modernizr would do everything that Selectivr does without the need to load two separate Javascript files?   I am asking because I see that the people at 320 and Up, are using both in their framework and am trying to figure why? (I am still getting into this, but I am now trying to create my own base responsive template for wordpress and that is why I have this question.)
Thanks.  by the way, this is the best explanation of Modernizr I have seen!
-DK</description>
		<content:encoded><![CDATA[<p>Hi! Can you explain the difference between Modernizr and Selectivizr.  It seems to me, that Modernizr would do everything that Selectivr does without the need to load two separate Javascript files?   I am asking because I see that the people at 320 and Up, are using both in their framework and am trying to figure why? (I am still getting into this, but I am now trying to create my own base responsive template for wordpress and that is why I have this question.)<br />
Thanks.  by the way, this is the best explanation of Modernizr I have seen!<br />
-DK</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chandan</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-130970</link>
		<dc:creator>chandan</dc:creator>
		<pubDate>Fri, 13 Apr 2012 11:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-130970</guid>
		<description>i do this without js multiple bg on ie7, 8, 9 and all browsers 


thanks for thouhts 


  background: url(images/2.jpg) center top no-repeat,  
	
				url(images/1_small.jpg)  bottom fixed  repeat-x; 
				url(images/2_small.jpg) center left repeat-x, 
				url(images/2_small.jpg) bottom right no-repeat;
				
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src=&#039;1_small.jpg&#039;, sizingMethod=&#039;crop&#039;); /* IE6-7 */
    -ms-filter: &quot;progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#039;images/3_small.jpg&#039;, sizingMethod=&#039;crop&#039;)&quot;; /* IE7 only */


thanks for all</description>
		<content:encoded><![CDATA[<p>i do this without js multiple bg on ie7, 8, 9 and all browsers </p>
<p>thanks for thouhts </p>
<p>  background: url(images/2.jpg) center top no-repeat,  </p>
<p>				url(images/1_small.jpg)  bottom fixed  repeat-x;<br />
				url(images/2_small.jpg) center left repeat-x,<br />
				url(images/2_small.jpg) bottom right no-repeat;</p>
<p>    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src=&#8217;1_small.jpg&#8217;, sizingMethod=&#8217;crop&#8217;); /* IE6-7 */<br />
    -ms-filter: &#8220;progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#8217;images/3_small.jpg&#8217;, sizingMethod=&#8217;crop&#8217;)&#8221;; /* IE7 only */</p>
<p>thanks for all</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: okan özkan</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-127294</link>
		<dc:creator>okan özkan</dc:creator>
		<pubDate>Fri, 06 Apr 2012 08:45:11 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-127294</guid>
		<description>Thanks for this – very nicely written &amp; should be part of Modernizr’s standard documentation.</description>
		<content:encoded><![CDATA[<p>Thanks for this – very nicely written &amp; should be part of Modernizr’s standard documentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: useful blogs and sites &#124; Pearltrees</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-125687</link>
		<dc:creator>useful blogs and sites &#124; Pearltrees</dc:creator>
		<pubDate>Mon, 02 Apr 2012 11:34:48 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-125687</guid>
		<description>[...] Web Designer Notebook » How to use Modernizr There is a tool that came to make our lives as progressive web designers a bit easier: Modernizr. In this short tutorial, learn how to apply this handy script to maximum effect on your sites. [...]</description>
		<content:encoded><![CDATA[<p>[...] Web Designer Notebook » How to use Modernizr There is a tool that came to make our lives as progressive web designers a bit easier: Modernizr. In this short tutorial, learn how to apply this handy script to maximum effect on your sites. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://webdesignernotebook.com/css/how-to-use-modernizr/#comment-115869</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Wed, 07 Mar 2012 19:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=976#comment-115869</guid>
		<description>Got it, thanks for all your help Tarun.</description>
		<content:encoded><![CDATA[<p>Got it, thanks for all your help Tarun.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

