<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>stoimen.com/blog &#187; css</title>
	<atom:link href="http://www.stoimen.com/blog/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stoimen.com/blog</link>
	<description>web developing</description>
	<lastBuildDate>Wed, 28 Jul 2010 15:07:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Vendor Prefixes in CSS</title>
		<link>http://www.stoimen.com/blog/2010/03/27/vendor-prefixes-in-css/</link>
		<comments>http://www.stoimen.com/blog/2010/03/27/vendor-prefixes-in-css/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 16:36:43 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Free software]]></category>
		<category><![CDATA[FTP clients]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1400</guid>
		<description><![CDATA[Vendor Prefixes vs CSS3 Either are bad, because vendor prefixes work on specific browsers, while CSS3 is not implemented fully by those browsers. When talking about vendor prefixes in CSS, let me tell you in breve, what&#8217;s this. If you&#8217;d like to make rounded corner under Mozilla Firefox, you usually use a background image, but [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/02/12/css-border-radius-vs-images/' rel='bookmark' title='Permanent Link: CSS border-radius vs. images!'>CSS border-radius vs. images!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/' rel='bookmark' title='Permanent Link: HTC?! Round the corners on IE!'>HTC?! Round the corners on IE!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/04/css-effective-selector/' rel='bookmark' title='Permanent Link: CSS effective selector'>CSS effective selector</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Vendor Prefixes vs CSS3</h2>
<p>Either are bad, because vendor prefixes work on specific browsers, while CSS3 is not implemented fully by those browsers. When talking about vendor prefixes in CSS, let me tell you in breve, what&#8217;s this. If you&#8217;d like to make rounded corner under Mozilla Firefox, you usually use a background image, but there&#8217;s another way to do it &#8211; with Mozilla specific CSS:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">-moz-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>That&#8217;s bad because it works only on Mozilla based browsers, although there&#8217;s a webkit based similar syntax:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">-webkit-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>Even after that our &#8220;favorite&#8221; browser MSIE until version 9 is not displaying any rounded corners.</p>
<p>In other hand CSS3 gives us the possibility to write the simple:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">border-radius<span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>which is not implemented in many currently used browsers, but it may be used for progressive enhancements.</p>
<h2>In Breve &#8230;</h2>
<p>Everybody&#8217;s talking about vendor prefixes after the famous <a href="http://www.quirksmode.org/blog/archives/2010/03/css_vendor_pref.html" target="_blank">post of PPK</a>, but there are both opinions &#8211; pros and cons. However it&#8217;s good to use it, but very carefully, and think about what CSS3 may give you!</p>


<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/02/12/css-border-radius-vs-images/' rel='bookmark' title='Permanent Link: CSS border-radius vs. images!'>CSS border-radius vs. images!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/' rel='bookmark' title='Permanent Link: HTC?! Round the corners on IE!'>HTC?! Round the corners on IE!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/04/css-effective-selector/' rel='bookmark' title='Permanent Link: CSS effective selector'>CSS effective selector</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/03/27/vendor-prefixes-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Priority: The Difference Between a.my-class and .my-class</title>
		<link>http://www.stoimen.com/blog/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/</link>
		<comments>http://www.stoimen.com/blog/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 14:58:28 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[Google Inc.]]></category>
		<category><![CDATA[Span and div]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1222</guid>
		<description><![CDATA[Do You Know What&#8217;s an Inefficient CSS Selector? Perhaps! I was curious how can inefficient selectors impact a page performance. To begin with this topic let me say that inefficient selector is referred usually as nested selector: div span div &#123; border:1px solid red; &#125; as you can see here there are three nested tags [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/02/04/css-effective-selector/' rel='bookmark' title='Permanent Link: CSS effective selector'>CSS effective selector</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/17/jquery-csstext-helps-you-improve-browser-reflows/' rel='bookmark' title='Permanent Link: jQuery cssText Helps You Improve Browser Reflows'>jQuery cssText Helps You Improve Browser Reflows</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/15/css-selectors-new-look-over-them/' rel='bookmark' title='Permanent Link: CSS selectors &#8211; new look over them'>CSS selectors &#8211; new look over them</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Do You Know What&#8217;s an Inefficient CSS Selector?</h2>
<p>Perhaps! I was curious how can inefficient selectors impact a page performance. To begin with this topic let me say that inefficient selector is referred usually as nested selector:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">div span div <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">red</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>as you can see here there are three nested tags I use to reference the innermost div. If you&#8217;re wondering how you&#8217;d know about inefficient selectors &#8211; well there is a plugin for the <a title="Firebug" href="http://getfirebug.com/" target="_blank">Firebug</a> written by a Google team called <a title="Page Speed" href="http://code.google.com/speed/page-speed/" target="_blank">Page Speed</a> explaining which of your selectors are inefficient. See the image below.</p>
<p><a href="http://www.stoimen.com/blog/wp-content/uploads/2010/03/css-selectors-inefficient1.png"><img class="aligncenter size-full wp-image-1273" title="css-selectors-inefficient" src="http://www.stoimen.com/blog/wp-content/uploads/2010/03/css-selectors-inefficient1.png" alt="CSS Page Speed Inefficient Selectors" width="430" height="113" /></a></p>
<p>In the <a title="CSS Performance Demo" href="http://www.stoimen.com/projects/css.selectors.performance/" target="_blank">demo</a> page you can find what I was trying to achieve and you can play around with that code to measure by yourself the performance of the different selectors.</p>
<h2>So who&#8217;s faster? Nested, IDs or Classes?</h2>
<p>Actually its pretty though to say. Yet another surprise for me was to notice that the notation:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">div<span style="color: #6666ff;">.my-class</span> <span style="color: #00AA00;">&#123;</span><span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>was a bit slower than the marked as <em>&#8220;inefficient&#8221;</em> by Page Speed:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">div span div <span style="color: #00AA00;">&#123;</span><span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Another good thing to mention is that there is a difference between div.my-class and .my-class</p>
<h2>Question&#8217;s answer &#8230;</h2>
<p>In fact <strong>div.my-class</strong> is always with a higher priority than <strong>.my-class</strong> even if you&#8217;ve the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">div<span style="color: #6666ff;">.my-class</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">red</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.my-class</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #000000; font-weight: bold;">blue</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
div span div <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>And the computed style for Firefox was &#8230;</p>
<p><a href="http://www.stoimen.com/blog/wp-content/uploads/2010/03/css-selectors-code.png"><img class="aligncenter size-full wp-image-1274" title="css-selectors-code" src="http://www.stoimen.com/blog/wp-content/uploads/2010/03/css-selectors-code.png" alt="CSS Selector Performance Computed Style" width="430" height="170" /></a></p>
<p>where &#8220;div span div&#8221; chain matches the same elements as the previous selectors, as you can see:</p>
<p><a href="http://www.stoimen.com/blog/wp-content/uploads/2010/03/css-selectors-dom-view.png"><img class="aligncenter size-full wp-image-1275" title="css-selectors-dom-view" src="http://www.stoimen.com/blog/wp-content/uploads/2010/03/css-selectors-dom-view.png" alt="CSS Selector DOM View" width="430" height="127" /></a></p>
<p>so even that <strong>div.my-class</strong> will be the most important and finally the element will get its red border! It does not depend only on where you put the CSS rules, but also on how they are defined.</p>


<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/02/04/css-effective-selector/' rel='bookmark' title='Permanent Link: CSS effective selector'>CSS effective selector</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/17/jquery-csstext-helps-you-improve-browser-reflows/' rel='bookmark' title='Permanent Link: jQuery cssText Helps You Improve Browser Reflows'>jQuery cssText Helps You Improve Browser Reflows</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/15/css-selectors-new-look-over-them/' rel='bookmark' title='Permanent Link: CSS selectors &#8211; new look over them'>CSS selectors &#8211; new look over them</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CSS right to left direction &amp; floating elements</title>
		<link>http://www.stoimen.com/blog/2010/03/08/css-right-to-left-direction-floating-elements/</link>
		<comments>http://www.stoimen.com/blog/2010/03/08/css-right-to-left-direction-floating-elements/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:38:54 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[micro tutorial]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1190</guid>
		<description><![CDATA[direction:rtl When developing a website for Arabic one of the most common questions is how to get it work with a reverse direction. Actually there is the CSS property direction: .my-class &#123; direction:rtl; &#125; which makes the page right aligned. Floating elements &#8230; However sometimes there are elements on the page which are absolutely positioned [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2009/11/10/jquery-css-functions-part-1-offset/' rel='bookmark' title='Permanent Link: jQuery CSS functions. Part 1 &#8211; offset()'>jQuery CSS functions. Part 1 &#8211; offset()</a></li>
<li><a href='http://www.stoimen.com/blog/2009/11/04/jquery-css-selectors-change-one-or-more-css-properties/' rel='bookmark' title='Permanent Link: jQuery CSS selectors. Change one or more CSS properties!'>jQuery CSS selectors. Change one or more CSS properties!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/05/css-sprites-go-beyond-the-limits-with-base64/' rel='bookmark' title='Permanent Link: CSS sprites. Go beyond the limits with base64!'>CSS sprites. Go beyond the limits with base64!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>direction:rtl</h2>
<p>When developing a website for Arabic one of the most common questions is how to get it work with a reverse direction. Actually there is the CSS property direction:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.my-class</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">direction</span><span style="color: #00AA00;">:</span>rtl<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>which makes the page right aligned.</p>
<h2>Floating elements &#8230;</h2>
<p>However sometimes there are elements on the page which are absolutely positioned and the direction property doesn&#8217;t do the job. The solution is something like combining the two settings. Both direction and float. So something like:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.my-class</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>becomes something like:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.my-class</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">direction</span><span style="color: #00AA00;">:</span>rtl<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>and of course if you&#8217;ve something like margin-left it should become margin-right!</p>


<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2009/11/10/jquery-css-functions-part-1-offset/' rel='bookmark' title='Permanent Link: jQuery CSS functions. Part 1 &#8211; offset()'>jQuery CSS functions. Part 1 &#8211; offset()</a></li>
<li><a href='http://www.stoimen.com/blog/2009/11/04/jquery-css-selectors-change-one-or-more-css-properties/' rel='bookmark' title='Permanent Link: jQuery CSS selectors. Change one or more CSS properties!'>jQuery CSS selectors. Change one or more CSS properties!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/05/css-sprites-go-beyond-the-limits-with-base64/' rel='bookmark' title='Permanent Link: CSS sprites. Go beyond the limits with base64!'>CSS sprites. Go beyond the limits with base64!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/03/08/css-right-to-left-direction-floating-elements/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fast way to manage the Arabic version of a web form</title>
		<link>http://www.stoimen.com/blog/2010/03/02/fast-way-to-manage-the-arabic-version-of-a-web-form/</link>
		<comments>http://www.stoimen.com/blog/2010/03/02/fast-way-to-manage-the-arabic-version-of-a-web-form/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 08:38:05 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Arabic language]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[web forms]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1173</guid>
		<description><![CDATA[Left to Right vs. Right to Left As you may know the Arabic language is written from right to left in reverse of Latin and Cyrillic languages and in the web that means you must change the look of the page for that subset of users coming to your site. One of the main problems [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/08/css-right-to-left-direction-floating-elements/' rel='bookmark' title='Permanent Link: CSS right to left direction &#038; floating elements'>CSS right to left direction &#038; floating elements</a></li>
<li><a href='http://www.stoimen.com/blog/2010/06/04/one-form-multiple-db-records/' rel='bookmark' title='Permanent Link: One Form &#8211; Multiple DB Records'>One Form &#8211; Multiple DB Records</a></li>
<li><a href='http://www.stoimen.com/blog/2010/06/15/use-zend_translate-to-translate-your-web-app/' rel='bookmark' title='Permanent Link: Use Zend_Translate to Translate Your Web App'>Use Zend_Translate to Translate Your Web App</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Left to Right vs. Right to Left</h2>
<p>As you may know the Arabic language is written from right to left in reverse of Latin and Cyrillic languages and in the web that means you must change the look of the page for that subset of users coming to your site.</p>
<p>One of the main problems are with web forms. Usually we use something like label:input pairs:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">label: &lt;input type=&quot;text&quot; /&gt;</pre></div></div>

<p>but when it comes to Arabic version it should be turned into:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;input type=&quot;text&quot; /&gt; : label</pre></div></div>

<p>and that&#8217;s quite tricky!</p>
<h2>The easiest way for me!</h2>
<p>Well I simply wrap that chunk of code into a table. That helps me manage the direction with the CSS direction:rtl like so:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;table&gt;
 &lt;tr&gt;
  &lt;td&gt;Label:&lt;/td&gt;
  &lt;td&gt;&lt;input type=&quot;text&quot; /&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;/table&gt;</pre></td></tr></table></div>

<p>When it comes to the Arabic version it can be translated with the simple:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;table style=&quot;direction:rtl;&quot;&gt;
 &lt;tr&gt;
  &lt;td&gt;Label:&lt;/td&gt;
  &lt;td&gt;&lt;input type=&quot;text&quot; /&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;/table&gt;</pre></td></tr></table></div>



<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/08/css-right-to-left-direction-floating-elements/' rel='bookmark' title='Permanent Link: CSS right to left direction &#038; floating elements'>CSS right to left direction &#038; floating elements</a></li>
<li><a href='http://www.stoimen.com/blog/2010/06/04/one-form-multiple-db-records/' rel='bookmark' title='Permanent Link: One Form &#8211; Multiple DB Records'>One Form &#8211; Multiple DB Records</a></li>
<li><a href='http://www.stoimen.com/blog/2010/06/15/use-zend_translate-to-translate-your-web-app/' rel='bookmark' title='Permanent Link: Use Zend_Translate to Translate Your Web App'>Use Zend_Translate to Translate Your Web App</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/03/02/fast-way-to-manage-the-arabic-version-of-a-web-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stylesheets may block rendering in IE. The solution is maybe dynamic loading.</title>
		<link>http://www.stoimen.com/blog/2010/02/18/stylesheets-may-block-rendering-in-ie-the-solution-is-maybe-dynamic-loading/</link>
		<comments>http://www.stoimen.com/blog/2010/02/18/stylesheets-may-block-rendering-in-ie-the-solution-is-maybe-dynamic-loading/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 18:39:03 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Opera Software]]></category>
		<category><![CDATA[Steve Souders]]></category>
		<category><![CDATA[web browsers]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1081</guid>
		<description><![CDATA[Yes! Style sheets may block the rendering process in IE. When it comes to media different from the screen, as the print is: media=print this, lovely, browser stops the rendering until the sheet is loaded. This is pretty strange when it comes to such media, just because it is not used to render the page [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2009/11/05/browsers-pixels-and-graphic-rendering/' rel='bookmark' title='Permanent Link: Browsers, pixels and graphic rendering!'>Browsers, pixels and graphic rendering!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/19/performance-of-jquery-1-4/' rel='bookmark' title='Permanent Link: Performance of jQuery 1.4'>Performance of jQuery 1.4</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/' rel='bookmark' title='Permanent Link: HTC?! Round the corners on IE!'>HTC?! Round the corners on IE!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Yes! Style sheets may block the rendering process in IE. When it comes to media different from the screen, as the print is:</p>
<blockquote>
<pre>media=print</pre>
</blockquote>
<p>this, lovely, browser stops the rendering until the sheet is loaded. This is pretty strange when it comes to such media, just because it is not used to render the page in a browser. In fact as <a title="Steve Souders" href="http://www.stevesouders.com/" target="_blank">Steve Souders </a>says the normal behavior of the browser should be don&#8217;t block or even delay the sheets for media that is not the current one.</p>
<p>However for further reading see this <a href="http://www.stevesouders.com/blog/2010/02/11/mediaprint-stylesheets/" target="_blank">post</a> with many thanks to Steve Souders again.</p>


<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2009/11/05/browsers-pixels-and-graphic-rendering/' rel='bookmark' title='Permanent Link: Browsers, pixels and graphic rendering!'>Browsers, pixels and graphic rendering!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/19/performance-of-jquery-1-4/' rel='bookmark' title='Permanent Link: Performance of jQuery 1.4'>Performance of jQuery 1.4</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/' rel='bookmark' title='Permanent Link: HTC?! Round the corners on IE!'>HTC?! Round the corners on IE!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/02/18/stylesheets-may-block-rendering-in-ie-the-solution-is-maybe-dynamic-loading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC?! Round the corners on IE!</title>
		<link>http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/</link>
		<comments>http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 14:40:14 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[web browsers]]></category>
		<category><![CDATA[web developers]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1092</guid>
		<description><![CDATA[Well I was writing these days about rounded corners and some cross browser techniques that help you do this job. But what&#8217;s actually a topic now is that most of the web developers are speaking about making different versions of a site for different browsers. Now this begins to look normal, but it isn&#8217;t. The [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/' rel='bookmark' title='Permanent Link: Cross-browser rounded corners! Works on IE but, but not on Opera!'>Cross-browser rounded corners! Works on IE but, but not on Opera!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/12/css-border-radius-vs-images/' rel='bookmark' title='Permanent Link: CSS border-radius vs. images!'>CSS border-radius vs. images!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/27/vendor-prefixes-in-css/' rel='bookmark' title='Permanent Link: Vendor Prefixes in CSS'>Vendor Prefixes in CSS</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Well I was writing these days about rounded corners and some cross browser techniques that help you do this job. But what&#8217;s actually a topic now is that most of the web developers are speaking about making different versions of a site for different browsers. Now this begins to look normal, but it isn&#8217;t. The ideal solution is to have everything working fine, in that case rounded corners to be rounded, on every browser.</p>
<p>As I wrote recently there is a way to do this in IE with the use of VML, but yet again this is not working on Opera, and puts another chunk of markup in your document, that leads to more difficult maintain.</p>
<p>The solution can be done with another approach that can be considered as one level beyond the VML usage. Thus you have scripts only in IE and clean CSS.</p>
<p>Everybody now&#8217;s using both:</p>
<blockquote>
<pre>-moz-border-radius
-webkit-border-radius
</pre>
</blockquote>
<p>and now&#8217;s coming the new wave with:</p>
<blockquote>
<pre>border-radius
</pre>
</blockquote>
<p>property in CSS3, but as we know it will be maybe present in IE9 and any older MSIE will be discarded.</p>
<h2>What the .htc means?</h2>
<p>It stands for HTML components file, which is completely JavaScript code that&#8217;s included via CSS as:</p>
<blockquote>
<pre>behavior: url(border-radus.htc);
</pre>
</blockquote>
<p>Of course you can find such .htc predefined files everywhere on the web and it&#8217;s completely working.</p>
<h2>The problem</h2>
<p>is that sometimes after using many HTML tags with border radius IE appears to crash, which is nothing new, but however not desirable.</p>


<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/' rel='bookmark' title='Permanent Link: Cross-browser rounded corners! Works on IE but, but not on Opera!'>Cross-browser rounded corners! Works on IE but, but not on Opera!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/12/css-border-radius-vs-images/' rel='bookmark' title='Permanent Link: CSS border-radius vs. images!'>CSS border-radius vs. images!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/27/vendor-prefixes-in-css/' rel='bookmark' title='Permanent Link: Vendor Prefixes in CSS'>Vendor Prefixes in CSS</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross-browser rounded corners! Works on IE but, but not on Opera!</title>
		<link>http://www.stoimen.com/blog/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/</link>
		<comments>http://www.stoimen.com/blog/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 19:29:38 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Graphics file formats]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Markup languages]]></category>
		<category><![CDATA[Vector graphics markup languages]]></category>
		<category><![CDATA[Vector Markup Language]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Web standards]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1091</guid>
		<description><![CDATA[What&#8217;s this that works on IE and any other browser, except on Opera?! Rounded Corners That was a strange answer. Who&#8217;s making rounded corners with CSS?! on IE and more important how? There is a way to make it, but not entirely with CSS and HTML. The solution is with VML a subset of XML [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/' rel='bookmark' title='Permanent Link: HTC?! Round the corners on IE!'>HTC?! Round the corners on IE!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/12/css-border-radius-vs-images/' rel='bookmark' title='Permanent Link: CSS border-radius vs. images!'>CSS border-radius vs. images!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/27/vendor-prefixes-in-css/' rel='bookmark' title='Permanent Link: Vendor Prefixes in CSS'>Vendor Prefixes in CSS</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s this that works on IE and any other browser, except on Opera?!</p>
<h2>Rounded Corners</h2>
<p>That was a strange answer. Who&#8217;s making rounded corners with CSS?! on IE and more important how? There is a way to make it, but not entirely with CSS and HTML. The solution is with VML a subset of XML to deal with vectors, and CSS of course.</p>
<p>The original solution I found on <a title="Rounded Corners experiment IE" href="http://snook.ca/archives/html_and_css/rounded_corners_experiment_ie/" target="_blank">snook.ca</a>.</p>
<p>It is really working fine as described and shown in the example, but there are some issues as well. There is no way to setup background image on the container, and the width and height are behaving strange.</p>
<p>However this gives you an opportunity to make cross browser rounded corners with no scripting that slows down the page and except Opera it&#8217;s quite working!</p>


<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/' rel='bookmark' title='Permanent Link: HTC?! Round the corners on IE!'>HTC?! Round the corners on IE!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/12/css-border-radius-vs-images/' rel='bookmark' title='Permanent Link: CSS border-radius vs. images!'>CSS border-radius vs. images!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/27/vendor-prefixes-in-css/' rel='bookmark' title='Permanent Link: Vendor Prefixes in CSS'>Vendor Prefixes in CSS</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>CSS selectors &#8211; new look over them</title>
		<link>http://www.stoimen.com/blog/2010/02/15/css-selectors-new-look-over-them/</link>
		<comments>http://www.stoimen.com/blog/2010/02/15/css-selectors-new-look-over-them/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 19:09:19 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[CSS filter]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[JavaScript programming language]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Software engineering]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1093</guid>
		<description><![CDATA[How do you select? When it comes to CSS selectors, most of us are using the most familiar selectors by id or class name. Something like: .my-class {} #my-id {} But as you can see in most of the big JavaScript libraries, such as jQuery, you can improve the selection of element/s by using complex [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/01/18/what-if-your-site-doesnt-use-all-of-the-css-selectors/' rel='bookmark' title='Permanent Link: What if your site doesn&#8217;t use all of the CSS selectors?'>What if your site doesn&#8217;t use all of the CSS selectors?</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/30/optimizing-css-five-simple-steps/' rel='bookmark' title='Permanent Link: Optimizing CSS. Five simple steps!'>Optimizing CSS. Five simple steps!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/' rel='bookmark' title='Permanent Link: CSS Priority: The Difference Between a.my-class and .my-class'>CSS Priority: The Difference Between a.my-class and .my-class</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>How do you select?</h2>
<p>When it comes to CSS selectors, most of us are using the most familiar selectors by id or class name. Something like:</p>
<blockquote>
<pre>.my-class {}
#my-id {}
</pre>
</blockquote>
<p>But as you can see in most of the big JavaScript libraries, such as jQuery, you can improve the selection of element/s by using complex selector syntax.</p>
<h2>Do you know the syntax?</h2>
<p>Maybe yes, but maybe not! As I stumbled upon an interesting article on <a title="css tricks" href="http://css-tricks.com" target="_blank">http://css-tricks.com</a><br />
<a title="Permanent Link to The Skinny on CSS Attribute Selectors" rel="bookmark" href="http://css-tricks.com/attribute-selectors/">The Skinny on CSS Attribute Selectors.</a><br />
The good part is that now you can use this powerful selector syntax to improve CSS.</p>
<h2>Browsers</h2>
<p>Because this is the most interesting part &#8211; yes it is supported by MSIE, and no &#8211; not before IE7, be careful if you&#8217;d like to support it.</p>


<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/01/18/what-if-your-site-doesnt-use-all-of-the-css-selectors/' rel='bookmark' title='Permanent Link: What if your site doesn&#8217;t use all of the CSS selectors?'>What if your site doesn&#8217;t use all of the CSS selectors?</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/30/optimizing-css-five-simple-steps/' rel='bookmark' title='Permanent Link: Optimizing CSS. Five simple steps!'>Optimizing CSS. Five simple steps!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/' rel='bookmark' title='Permanent Link: CSS Priority: The Difference Between a.my-class and .my-class'>CSS Priority: The Difference Between a.my-class and .my-class</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/02/15/css-selectors-new-look-over-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS border-radius vs. images!</title>
		<link>http://www.stoimen.com/blog/2010/02/12/css-border-radius-vs-images/</link>
		<comments>http://www.stoimen.com/blog/2010/02/12/css-border-radius-vs-images/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 09:24:22 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft Corporation]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Tableless web design]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[web designers]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1082</guid>
		<description><![CDATA[Rounded corners This is one of the main problems of web design and development now, even if it sounds strange. The thing is that with round corners the elements become more nice and groovy and most of the web designers make such design templates. The problem than comes over the web developer who&#8217;s supposed to [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/27/vendor-prefixes-in-css/' rel='bookmark' title='Permanent Link: Vendor Prefixes in CSS'>Vendor Prefixes in CSS</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/' rel='bookmark' title='Permanent Link: HTC?! Round the corners on IE!'>HTC?! Round the corners on IE!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/' rel='bookmark' title='Permanent Link: Cross-browser rounded corners! Works on IE but, but not on Opera!'>Cross-browser rounded corners! Works on IE but, but not on Opera!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Rounded corners</h2>
<p>This is one of the main problems of web design and development now, even if it sounds strange. The thing is that with round corners the elements become more nice and groovy and most of the web designers make such design templates. The problem than comes over the web developer who&#8217;s supposed to convert this into HTML and CSS. Of course it would be nice if all browsers support rounded corners in CSS, but they don&#8217;t and guess what IE fully doesn&#8217;t support it.</p>
<blockquote>
<pre>-moz and -webkit</pre>
</blockquote>
<p>Most of you have heart about this patches in CSS when you can use this prefixes for Mozilla based and Safari&#8217;s Webkit based browsers. Than you can use border radius with no pain, and you get the same effect as with using images.</p>
<blockquote>
<pre>-moz-border-radius : 4px;
-webkit-border-radius : 4px;
</pre>
</blockquote>
<p>Of course on IE this doesn&#8217;t work and the element remains with square corners. But what the question is, should we make both versions for non IE browsers without images and a version for the &#8220;great&#8221; MSIE and all of its versions?</p>
<h2>My answer is: no!</h2>
<p>Although many sites do that, see vimeo for instance, there&#8217;s no need to support that. As the rumor and the MSIE blog says in IE9 which is &#8230; coming soon there will be &#8211; <strong>border-radius</strong> property.</p>
<h2>That&#8217;s awesome!</h2>
<p>Finally Microsoft has done something good! So stop using background images! This is hard to maintain, difficult to make and it&#8217;s bad for the browser loading time, because of the extra images/sprites.</p>


<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/27/vendor-prefixes-in-css/' rel='bookmark' title='Permanent Link: Vendor Prefixes in CSS'>Vendor Prefixes in CSS</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/17/htc-round-the-corners-on-ie/' rel='bookmark' title='Permanent Link: HTC?! Round the corners on IE!'>HTC?! Round the corners on IE!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/' rel='bookmark' title='Permanent Link: Cross-browser rounded corners! Works on IE but, but not on Opera!'>Cross-browser rounded corners! Works on IE but, but not on Opera!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/02/12/css-border-radius-vs-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manage JavaScript and CSS includes within Zend Framework application</title>
		<link>http://www.stoimen.com/blog/2010/02/10/manage-javascript-and-css-includes-within-zend-framework-application/</link>
		<comments>http://www.stoimen.com/blog/2010/02/10/manage-javascript-and-css-includes-within-zend-framework-application/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 07:29:18 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[JavaScript programming language]]></category>
		<category><![CDATA[Software engineering]]></category>
		<category><![CDATA[Style sheet]]></category>
		<category><![CDATA[Unobtrusive JavaScript]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=1052</guid>
		<description><![CDATA[How to include JavaScript and CSS files? In Zend Framework there is a very elegant way to include CSS and JavaScript. Because in one single view of any action you cannot include a JavaScript or CSS because they wont be executed from the browser, you can simply use a helper. You can see the original [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/06/24/zend-framework-inject-javascript-code-in-a-actionview/' rel='bookmark' title='Permanent Link: Zend Framework: Inject JavaScript Code in a Action/View'>Zend Framework: Inject JavaScript Code in a Action/View</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/05/css-sprites-go-beyond-the-limits-with-base64/' rel='bookmark' title='Permanent Link: CSS sprites. Go beyond the limits with base64!'>CSS sprites. Go beyond the limits with base64!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/15/css-selectors-new-look-over-them/' rel='bookmark' title='Permanent Link: CSS selectors &#8211; new look over them'>CSS selectors &#8211; new look over them</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>How to include JavaScript and CSS files?</h2>
<p>In Zend Framework there is a very elegant way to include CSS and JavaScript. Because in one single view of any action you cannot include a JavaScript or CSS because they wont be executed from the browser, you can simply use a helper.</p>
<p>You can see the original source of how that&#8217;s done <a href="http://devzone.zend.com/article/11760-Managing-CSS-and-JavaScript-files-within-a-Zend-Framework-App" target="_blank">here</a>. And in breve you can include a JS file like so:</p>
<blockquote>
<pre>&lt;? $this-&gt;headScript()-&gt;appendFile('/media/js/global.js') ?&gt;</pre>
</blockquote>
<p>but where the problem is?</p>
<p>As a very good PHP point of view, there is really that way to include JS into the application. But a PHP point of view is not a JavaScript point of view so this solution is not the best one.</p>
<p>As almost everybody knows JavaScript blocks other content until it&#8217;s loaded and executed from the server and nowadays the most popular way to include JS is just before the closing <strong>&lt;body&gt;</strong> tag.</p>
<p>That&#8217;s why the ZF solution is not optimal. What we actually need as both PHP and JavaScript developers is a most robust solution!</p>


<p>Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/06/24/zend-framework-inject-javascript-code-in-a-actionview/' rel='bookmark' title='Permanent Link: Zend Framework: Inject JavaScript Code in a Action/View'>Zend Framework: Inject JavaScript Code in a Action/View</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/05/css-sprites-go-beyond-the-limits-with-base64/' rel='bookmark' title='Permanent Link: CSS sprites. Go beyond the limits with base64!'>CSS sprites. Go beyond the limits with base64!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/15/css-selectors-new-look-over-them/' rel='bookmark' title='Permanent Link: CSS selectors &#8211; new look over them'>CSS selectors &#8211; new look over them</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2010/02/10/manage-javascript-and-css-includes-within-zend-framework-application/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
