<?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>cssgallery.info &#187; CSS</title>
	<atom:link href="http://cssgallery.info/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://cssgallery.info</link>
	<description>Resources for web developers</description>
	<lastBuildDate>Sun, 11 Jul 2010 16:19:16 +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>How to make a glowing menu with MooTools in 3 easy steps</title>
		<link>http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/</link>
		<comments>http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 12:11:17 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[glowing menu]]></category>
		<category><![CDATA[how to make a menu]]></category>
		<category><![CDATA[javascript menu]]></category>
		<category><![CDATA[mootools tutorial]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=906</guid>
		<description><![CDATA[<h3>Ingredients:</h3> sprites, unorderdered lists, Mootools knowledge.
<h3>Cooking time:</h3> 1 hr
<h3>Result:</h3>
Can be seen on our website -  <a title="Rborn web development agency" href="http://rborn.info" target="_blank">Rborn Web development</a> -  mouse-over the top menu.
<img class="alignnone size-full wp-image-907" title="Rborn web development glowing menu" src="http://cssgallery.info/wp-content/uploads/2010/04/capture-13.png" alt="Rborn web development glowing menu" width="380" height="110" />]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fhow-to-make-a-glowing-menu-with-mootools-in-3-easy-steps%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fhow-to-make-a-glowing-menu-with-mootools-in-3-easy-steps%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>Ingredients:</strong> sprites, unorderdered lists, Mootools knowledge.<br />
<strong>Cooking time:</strong> 1 hr<br />
<strong>Result:</strong><br />
Can be seen on our website &#8211;  <a title="Rborn web development agency" href="http://rborn.info" target="_blank">Rborn Web development</a> &#8211;  mouse-over the top menu.<br />
<img class="alignnone size-full wp-image-907" title="Rborn web development glowing menu" src="http://cssgallery.info/wp-content/uploads/2010/04/capture-13.png" alt="Rborn web development glowing menu" width="380" height="110" /></p>
<h2>Preparation of the Mootools glowing menu</h2>
<p>The menu is a list containing an <strong>A</strong> tag for each menu item. We are using <em>sprites</em> and <em>text-indent:-5000px</em> for accessibility purposes. <strong>The trick</strong> is that we use the image <strong>positioned top for LI</strong> and <strong>bottom for A HREF</strong></p>
<p><img class="alignnone size-full wp-image-908" title="menu sprite" src="http://cssgallery.info/wp-content/uploads/2010/04/capture-23.png" alt="" width="83" height="151" /></p>
<h2>Step 1: cook the HTML code</h2>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;ul id=&quot;mainnav&quot;&gt;
&lt;li&gt;&lt;a href=&quot;/&quot;&gt;home&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;products&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;portfolio&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/blog/&quot;&gt;news&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;contact&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre></div></div>

<h2>Step 2: add the CSS code</h2>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">li<span style="color: #6666ff;">.home</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">&quot;../img/home.png&quot;</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">top</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
li<span style="color: #6666ff;">.home</span> a <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">29px</span><span style="color: #00AA00;">;</span>background<span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">&quot;../img/home.png&quot;</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">bottom</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>This is the positioning of the background image I was talking about earlier.<br />
Now the magic of the glowing is made with few lines of code using MooTools.</p>
<h2>Step 3: spice with MooTools code</h2>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'mainnav'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">getElements</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'li a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">item</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #000066; font-weight: bold;">item</span>.<span style="color: #660066;">hasClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'clicked'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000066; font-weight: bold;">item</span>.<span style="color: #660066;">setStyle</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'opacity'</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0.01</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addEvent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'mouseenter'</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>        
<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">fade</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addEvent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'mouseleave'</span><span style="color: #339933;">,</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">fade</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0.01</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>The code is triggered either on <strong>domready</strong> event, or put inside a <strong>script</strong> tag just before the body ends  so have the dom loaded and ready to be accessed by javascript.</p>
<p>Basically all we are doing is to get all the <strong>A</strong> tags inside the menu, set the opacity to <strong>0.01</strong> because if you set it to <strong>0</strong> MooTools will add <strong>display:none</strong> to the style and the links won&#8217;t be visible anymore.</p>
<p>Further we play with the <strong>fade</strong> method to increase the <strong>opacity</strong> to <strong>1</strong> or decrease back to <strong>0.01</strong> on the <strong>mouseenter</strong> and <strong>mouseleave</strong> event.</p>
<p>We also check if the menu is active or not &#8211; we are on the menu  page or not &#8211;  verifying if the item has a <strong>class &#8216;clicked&#8217;</strong>, set by the backend. If the item contains this class  we simply leave it alone and the item is <strong>&#8216;on&#8217;</strong> all the time.</p>
<p>That&#8217;s it. Let me know your thoughts.</p>
<p><strong class="spanish">Check the Spanish version of this post:<br />
<a href="http://nosoloweb.es/como-hacer-menu-brillante-mootools/" rel="me">Cómo hacer un menú brillante con MooTools en 3 pasos</a></strong></p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;title=How+to+make+a+glowing+menu+with+MooTools+in+3+easy+steps&amp;description=Ingredients%3A%20sprites%2C%20unorderdered%20lists%2C%20Mootools%20knowledge.%0D%0ACooking%20time%3A%201%20hr%0D%0AResult%3A%0D%0ACan%20be%20seen%20on%20our%20website%20-%20%20Rborn%20Web%20development%20-%20%20mouse-over%20the%20top%20menu.%0D%0A" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;title=How+to+make+a+glowing+menu+with+MooTools+in+3+easy+steps" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;title=How+to+make+a+glowing+menu+with+MooTools+in+3+easy+steps" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;title=How+to+make+a+glowing+menu+with+MooTools+in+3+easy+steps" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;title=How+to+make+a+glowing+menu+with+MooTools+in+3+easy+steps" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;t=How+to+make+a+glowing+menu+with+MooTools+in+3+easy+steps" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;title=How+to+make+a+glowing+menu+with+MooTools+in+3+easy+steps" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;title=How+to+make+a+glowing+menu+with+MooTools+in+3+easy+steps&amp;srcUrl=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/&amp;srcTitle=How+to+make+a+glowing+menu+with+MooTools+in+3+easy+steps&amp;snippet=Ingredients%3A%20sprites%2C%20unorderdered%20lists%2C%20Mootools%20knowledge.%0D%0ACooking%20time%3A%201%20hr%0D%0AResult%3A%0D%0ACan%20be%20seen%20on%20our%20website%20-%20%20Rborn%20Web%20development%20-%20%20mouse-over%20the%20top%20menu.%0D%0A" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/how-to-make-a-glowing-menu-with-mootools-in-3-easy-steps/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Crossbrowser CSS dropshadows</title>
		<link>http://cssgallery.info/crossbrowsing-css-dropshadows/</link>
		<comments>http://cssgallery.info/crossbrowsing-css-dropshadows/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 09:50:30 +0000</pubDate>
		<dc:creator>Lucica Ibanescu</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[crossbrowser]]></category>
		<category><![CDATA[dropshadow]]></category>
		<category><![CDATA[IE-compatible]]></category>
		<category><![CDATA[shadow]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=769</guid>
		<description><![CDATA[Very simple problem with a pretty complicated solution, mostly because IE is ignoring the <strong>box-shadow</strong> CSS3 property. Instead <strong>progid:DXImageTransform.Microsoft.Shadow</strong> is doing the trick for it and an equivalent can be found. 

The result?
<img src="http://cssgallery.info/wp-content/uploads/2010/04/dropshadows-in-mozilla-and-internet-explorer.png" alt="crossbrowser dropshadows in mozilla and internet explorer" title="dropshadows-in-mozilla-and-internet-explorer" width="440" height="210" class="alignleft size-full wp-image-770" />
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fcrossbrowsing-css-dropshadows%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fcrossbrowsing-css-dropshadows%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Very simple problem with a pretty complicated solution, mostly because IE is ignoring the <strong>box-shadow</strong> CSS3 property. Instead <strong>progid:DXImageTransform.Microsoft.Shadow</strong> is doing the trick for it and an equivalent can be found.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #933;">4px</span> <span style="color: #933;">8px</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span></pre></div></div>

<p> for the white shadow is visually-similar to</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">progid<span style="color: #3333ff;">:DXImageTransform</span><span style="color: #6666ff;">.Microsoft</span>.Shadow<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">=</span><span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">,</span><span style="color: #000000; font-weight: bold;">direction</span><span style="color: #00AA00;">=</span><span style="color: #cc66cc;">90</span><span style="color: #00AA00;">,</span>strength<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">8</span><span style="color: #00AA00;">&#41;</span></pre></div></div>

<p>because <strong>box-shadow</strong> has the parameters:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">horizontal-offset<span style="color: #00AA00;">,</span> vertical-offset<span style="color: #00AA00;">,</span> blur-radius<span style="color: #00AA00;">,</span> <span style="color: #000000; font-weight: bold;">color</span></pre></div></div>

<p>and <strong>progid:DXImageTransform.Microsoft.Shadow</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">,</span> 
<span style="color: #000000; font-weight: bold;">direction</span> <span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">90</span> for <span style="color: #000000; font-weight: bold;">right</span> <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">,</span> it can also be <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">45</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">135</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">180</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">225</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">270</span> and <span style="color: #cc66cc;">315</span> <span style="color: #00AA00;">&#41;</span>
strength <span style="color: #00AA00;">&#40;</span>the distance<span style="color: #00AA00;">,</span> in pixels<span style="color: #00AA00;">,</span> that a filter effect extends - more like the combination of <span style="color: #933;">4px</span> <span style="color: #933;">4px</span> in the box-shadow<span style="color: #00AA00;">&#41;</span></pre></div></div>

<p>What it doesn&#8217;t have is the blur-radius. Altough progid:DXImageTransform.Microsoft.Blur exist, it will blur the content of the box too, making the text unreadable.</p>
<p>The result is quite similar, with some small differences in how IE displays the corners. As you can see the top-right corner and the bottom-right corner are a mess (the bottom-left doesn&#8217;t feel very well either), but let&#8217;s be grateful they exist&#8230;</p>
<p><img src="http://cssgallery.info/wp-content/uploads/2010/04/dropshadows-in-mozilla-and-internet-explorer.png" alt="crossbrowser dropshadows in mozilla and internet explorer" title="dropshadows-in-mozilla-and-internet-explorer" width="440" height="210" class="size-full wp-image-770" /></p>
<p>You can <a href="http://cssgallery.info/wp-content/CSS-drop-shadow/index.php" target="_blank">check the demo link</a> if you want to play with other browsers.<br />
The complete CSS code for all browsers is:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.black-shadow</span> <span style="color: #00AA00;">&#123;</span> 
-moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #933;">4px</span> <span style="color: #933;">8px</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
-webkit-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #933;">4px</span> <span style="color: #933;">8px</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #933;">4px</span> <span style="color: #933;">8px</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
&nbsp;
filter<span style="color: #00AA00;">:</span> progid<span style="color: #3333ff;">:DXImageTransform</span><span style="color: #6666ff;">.Microsoft</span><span style="color: #6666ff;">.Shadow</span> <span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">=</span><span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">,</span><span style="color: #000000; font-weight: bold;">direction</span><span style="color: #00AA00;">=</span><span style="color: #cc66cc;">90</span><span style="color: #00AA00;">,</span>strength<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">8</span><span style="color: #00AA00;">&#41;</span>
        progid<span style="color: #3333ff;">:DXImageTransform</span><span style="color: #6666ff;">.Microsoft</span><span style="color: #6666ff;">.Shadow</span> <span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">=</span><span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">,</span><span style="color: #000000; font-weight: bold;">direction</span><span style="color: #00AA00;">=</span><span style="color: #cc66cc;">180</span><span style="color: #00AA00;">,</span>strength<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">8</span><span style="color: #00AA00;">&#41;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><strong class="spanish">Check the Spanish version of this post:<br />
<a href="http://nosoloweb.es/sombras-css3-crossbrowser/" rel="me">Sombras CSS en múltiples navegadores</a></strong></p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;title=Crossbrowser+CSS+dropshadows&amp;description=Very%20simple%20problem%20with%20a%20pretty%20complicated%20solution%2C%20mostly%20because%20IE%20is%20ignoring%20the%20box-shadow%20CSS3%20property.%20Instead%20progid%3ADXImageTransform.Microsoft.Shadow%20is%20doing%20the%20trick%20for%20it%20and%20an%20equivalent%20can%20be%20found.%20%0D%0A%0D%0AThe%20result%3F%0D%0A%0D%0A" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;title=Crossbrowser+CSS+dropshadows" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;title=Crossbrowser+CSS+dropshadows" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;title=Crossbrowser+CSS+dropshadows" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;title=Crossbrowser+CSS+dropshadows" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/crossbrowsing-css-dropshadows/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;t=Crossbrowser+CSS+dropshadows" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;title=Crossbrowser+CSS+dropshadows" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;title=Crossbrowser+CSS+dropshadows&amp;srcUrl=http://cssgallery.info/crossbrowsing-css-dropshadows/&amp;srcTitle=Crossbrowser+CSS+dropshadows&amp;snippet=Very%20simple%20problem%20with%20a%20pretty%20complicated%20solution%2C%20mostly%20because%20IE%20is%20ignoring%20the%20box-shadow%20CSS3%20property.%20Instead%20progid%3ADXImageTransform.Microsoft.Shadow%20is%20doing%20the%20trick%20for%20it%20and%20an%20equivalent%20can%20be%20found.%20%0D%0A%0D%0AThe%20result%3F%0D%0A%0D%0A" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/crossbrowsing-css-dropshadows/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/crossbrowsing-css-dropshadows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everything is green with IE9</title>
		<link>http://cssgallery.info/everything-is-green-with-ie9/</link>
		<comments>http://cssgallery.info/everything-is-green-with-ie9/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 11:21:28 +0000</pubDate>
		<dc:creator>Lucica Ibanescu</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Submitted news]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[IE9]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=750</guid>
		<description><![CDATA[I am sure you all know about Mictosoft's IE9 Testdrive. Its main target was, for now, the developer - in an attempt to showcase the improvements in IE9 and maybe make us be more nice to them and forget how much time we waste with IE6. 

What I was interested as a frontend developer was the the compatibility tables for features like SVG, CSS3 and DOM. And the test results, as per Microsoft's page, are all gorgeous.
<img src="http://cssgallery.info/wp-content/uploads/2010/03/test-results.gif" alt="IE9 testdrive results" title="test-results" width="450" height="105" class="size-full wp-image-751" />]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Feverything-is-green-with-ie9%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Feverything-is-green-with-ie9%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I am sure you all know about Mictosoft&#8217;s IE9 Testdrive. Its main target was, for now, the developer &#8211; in an attempt to showcase the improvements in IE9 and maybe make us be more nice to them and forget how much time we waste with IE6. </p>
<p>What I was interested as a frontend developer was the the compatibility tables for features like SVG, CSS3 and DOM. And the test results, as per Microsoft&#8217;s page, are all gorgeous.<br />
<img src="http://cssgallery.info/wp-content/uploads/2010/03/test-results.gif" alt="IE9 testdrive results" title="test-results" width="450" height="105" class="size-full wp-image-751" /></p>
<p>A more detailed list of supported features can be seen by checking <a href="http://samples.msdn.microsoft.com/ietestcenter/">their website</a> but long story short, everything is green for them and not so green for the other browsers, except CSS3 :nth-child selector and CSS comments<br />
<img src="http://cssgallery.info/wp-content/uploads/2010/03/css3-selectors.gif" alt="CSS3 supported selectors" title="css3-selectors" width="450" height="257" class="alignleft size-full wp-image-752" /></p>
<p>and DOM level 2 style @import inside of @media<br />
<img src="http://cssgallery.info/wp-content/uploads/2010/03/dom-level2.gif" alt="DOM level2 table" title="dom-level2" width="450" height="111" class="alignleft size-full wp-image-753" /></p>
<p>Another very interesting source of information regarding the present and future features supported by the browsers is <a href="http://a.deveria.com/caniuse/">When can I use&#8230;</a>  that also includes HTML5 elements &#8211; I notice IE9 testdrive page is not mentioning anything about HTML5 altough IE9 is expecting to support it in a certain percentage. They have also calculated the support that past and future browsers have for some features and their numbers are like this:<br />
<img src="http://cssgallery.info/wp-content/uploads/2010/03/test-results-website.gif" alt="Test result When can I use" title="test-results-website" width="450" height="79" class="alignleft size-full wp-image-757" /></p>
<p>But you&#8217;d better check their website to see the features they worked with cause there are some differences that worth being taking into account. </p>
<p>We salute Microsofts initiative, altough we would love to see some of these CSS3 borders, backgrounds and selectors embedded in an IE8 update&#8230;cause we all check our statistics&#8230;.</p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/everything-is-green-with-ie9/&amp;title=Everything+is+green+with+IE9&amp;description=I%20am%20sure%20you%20all%20know%20about%20Mictosoft%27s%20IE9%20Testdrive.%20Its%20main%20target%20was%2C%20for%20now%2C%20the%20developer%20-%20in%20an%20attempt%20to%20showcase%20the%20improvements%20in%20IE9%20and%20maybe%20make%20us%20be%20more%20nice%20to%20them%20and%20forget%20how%20much%20time%20we%20waste%20with%20IE6.%20%0D%0A%0D%0AWhat%20I%20was%20interested%20as%20a%20frontend%20developer%20was%20the%20the%20compatibility%20tables%20for%20features%20like%20SVG%2C%20CSS3%20and%20DOM.%20And%20the%20test%20results%2C%20as%20per%20Microsoft%27s%20page%2C%20are%20all%20gorgeous.%0D%0A" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/everything-is-green-with-ie9/&amp;title=Everything+is+green+with+IE9" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/everything-is-green-with-ie9/&amp;title=Everything+is+green+with+IE9" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/everything-is-green-with-ie9/&amp;title=Everything+is+green+with+IE9" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/everything-is-green-with-ie9/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/everything-is-green-with-ie9/&amp;title=Everything+is+green+with+IE9" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/everything-is-green-with-ie9/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/everything-is-green-with-ie9/&amp;t=Everything+is+green+with+IE9" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/everything-is-green-with-ie9/&amp;title=Everything+is+green+with+IE9" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/everything-is-green-with-ie9/&amp;title=Everything+is+green+with+IE9&amp;srcUrl=http://cssgallery.info/everything-is-green-with-ie9/&amp;srcTitle=Everything+is+green+with+IE9&amp;snippet=I%20am%20sure%20you%20all%20know%20about%20Mictosoft%27s%20IE9%20Testdrive.%20Its%20main%20target%20was%2C%20for%20now%2C%20the%20developer%20-%20in%20an%20attempt%20to%20showcase%20the%20improvements%20in%20IE9%20and%20maybe%20make%20us%20be%20more%20nice%20to%20them%20and%20forget%20how%20much%20time%20we%20waste%20with%20IE6.%20%0D%0A%0D%0AWhat%20I%20was%20interested%20as%20a%20frontend%20developer%20was%20the%20the%20compatibility%20tables%20for%20features%20like%20SVG%2C%20CSS3%20and%20DOM.%20And%20the%20test%20results%2C%20as%20per%20Microsoft%27s%20page%2C%20are%20all%20gorgeous.%0D%0A" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/everything-is-green-with-ie9/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/everything-is-green-with-ie9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using CSS3 to style forms written in HTML5</title>
		<link>http://cssgallery.info/using-css3-to-style-forms-written-in-html5/</link>
		<comments>http://cssgallery.info/using-css3-to-style-forms-written-in-html5/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 10:24:09 +0000</pubDate>
		<dc:creator>Lucica Ibanescu</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[corners]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[dropshadow]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[gradient]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[rounded]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=531</guid>
		<description><![CDATA[Styling a form is never an easy thing to do, but adding CSS3 on a HTML5 form is a task that shows a large variety of results when it comes to testing on different browsers. Check the test link. When it comes to CSS3 not much can be done: but adding rounded corners, gradients and [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fusing-css3-to-style-forms-written-in-html5%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fusing-css3-to-style-forms-written-in-html5%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Styling a form is never an easy thing to do, but adding CSS3 on a HTML5 form is a task that shows a large variety of results when it comes to testing on different browsers. <a href="http://cssgallery.info/wp-content/css3-styled-form/index.php" target="_blank">Check the test link.</a></p>
<p>When it comes to CSS3 not much can be done: but adding rounded corners, gradients and dropshadows is still more than nothing anf the overall aspect of the form is <em>waaaaaaaaay</em> better. But HTML5 is supported by few browsers (this HTML form only by Opera) and CSS3 also by few broswers &#8211; but different from the one supporting HTML5.</p>
<p><strong>The result:</strong> impossible to see the result on one browser only: the rounded corners can be seen on Mozilla/Chrome/Safari and the HTML5 elements on Opera.</p>
<p>Internet Explorer? Better don&#8217;t ask. No support whatsoever.</p>
<p>So the results:</p>
<ol>
<li><strong>Mozilla 3: </strong> rounded corners + / HTML 5 elements<br />
<img class="alignnone size-full wp-image-565" title="capture-2" src="http://cssgallery.info/wp-content/uploads/2009/10/capture-2.png" alt="capture-2" width="312" height="484" /></li>
<li><strong>Chrome: </strong> rounded corners + (they look weird) / HTML 5 elements -<br />
<img class="alignnone size-full wp-image-570" title="chrome-screenshot" src="http://cssgallery.info/wp-content/uploads/2009/10/chrome-screenshot.png" alt="chrome-screenshot" width="311" height="529" /></li>
<li><strong>Safari: </strong> rounded corners + / HTML 5 elements -<br />
<img class="alignnone size-full wp-image-566" title="capture-3" src="http://cssgallery.info/wp-content/uploads/2009/10/capture-3.png" alt="capture-3" width="312" height="484" /></li>
<li><strong>Opera 9: </strong> rounded corners &#8211; / HTML 5 elements +<br />
<img class="alignnone size-full wp-image-567" title="capture-1" src="http://cssgallery.info/wp-content/uploads/2009/10/capture-1.png" alt="capture-1" width="310" height="464" /></li>
<li><strong>IE (doesn&#8217;t matter which one): </strong> rounded corners &#8211; / HTML 5 elements -<br />
<img class="alignnone size-full wp-image-571" title="ie8-screenshot" src="http://cssgallery.info/wp-content/uploads/2009/10/ie8-screenshot.png" alt="ie8-screenshot" width="308" height="506" /></li>
</ol>
<p>It seems we have to wait a little longer till we can drop Javascript from styling the forms  <img src='http://cssgallery.info/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><strong>UPDATE</strong></p>
<p><a href="http://twitter.com/ricferrer" target="_blank">Ric Ferrer</a> sent us a screenshot with the behavior of Mobile Safari from his Ipod. Thank you <img src='http://cssgallery.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img class="alignnone size-full wp-image-689" title="37555934" src="http://cssgallery.info/wp-content/uploads/2009/10/37555934.jpg" alt="37555934" width="320" height="480" /></p>
<p><strong class="spanish">Check the Spanish version of this post:<br />
<a href="http://nosoloweb.es/usando-css3-para-dar-estilo-a-formularios-escritos-en-html5/" rel="me">Usando CSS3 para dar estilo a formularios escritos en HTML5</a></strong></p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;title=Using+CSS3+to+style+forms+written+in+HTML5&amp;description=Styling%20a%20form%20is%20never%20an%20easy%20thing%20to%20do%2C%20but%20adding%20CSS3%20on%20a%20HTML5%20form%20is%20a%20task%20that%20shows%20a%20large%20variety%20of%20results%20when%20it%20comes%20to%20testing%20on%20different%20browsers.%20Check%20the%20test%20link.%0D%0A%0D%0AWhen%20it%20comes%20to%20CSS3%20not%20much%20can%20be%20done%3A%20but%20adding%20rounded%20corners%2C%20gradients%20and%20dropshadows%20is%20st" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;title=Using+CSS3+to+style+forms+written+in+HTML5" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;title=Using+CSS3+to+style+forms+written+in+HTML5" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;title=Using+CSS3+to+style+forms+written+in+HTML5" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;title=Using+CSS3+to+style+forms+written+in+HTML5" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;t=Using+CSS3+to+style+forms+written+in+HTML5" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;title=Using+CSS3+to+style+forms+written+in+HTML5" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;title=Using+CSS3+to+style+forms+written+in+HTML5&amp;srcUrl=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/&amp;srcTitle=Using+CSS3+to+style+forms+written+in+HTML5&amp;snippet=Styling%20a%20form%20is%20never%20an%20easy%20thing%20to%20do%2C%20but%20adding%20CSS3%20on%20a%20HTML5%20form%20is%20a%20task%20that%20shows%20a%20large%20variety%20of%20results%20when%20it%20comes%20to%20testing%20on%20different%20browsers.%20Check%20the%20test%20link.%0D%0A%0D%0AWhen%20it%20comes%20to%20CSS3%20not%20much%20can%20be%20done%3A%20but%20adding%20rounded%20corners%2C%20gradients%20and%20dropshadows%20is%20st" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/using-css3-to-style-forms-written-in-html5/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/using-css3-to-style-forms-written-in-html5/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A functional Mozilla menu roll-over effect &#8211; no preload necessary</title>
		<link>http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/</link>
		<comments>http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 15:50:45 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[roll-over effect]]></category>
		<category><![CDATA[sprites]]></category>

		<guid isPermaLink="false">http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/</guid>
		<description><![CDATA[A functional Mozilla menu roll-over effect - no preload necessary]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fa-functional-mozilla-menu-roll-over-effect-no-preload-necessary%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fa-functional-mozilla-menu-roll-over-effect-no-preload-necessary%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Hi, I would like to write about preloading images in Mozilla. I faced this problem many times and for a while the long-used-trick with a display:none div worked very well.  So I happily created roll-over effects in image-based menus until one day&#8230;</p>
<p>Now the old trick is not functioning on Mozilla. The good guy is Internet Explorer and the bad guy is suddenly Mozilla. Surprised? Me too&#8230;</p>
<p>THE SOLUTION &#8211; is not necessary original and brain-blowing &#8211; but it&#8217;s working beautifully and with no CSS/HTML crazy tricks.</p>
<p>Instead of having the menu background like this</p>
<p><a href="http://cssgallery.info/wp-content/uploads/2008/03/home.jpg" title="index background image"><img src="http://cssgallery.info/wp-content/uploads/2008/03/home.jpg" alt="index background image" /></a></p>
<p>and the roll-over image like this:</p>
<p><a href="http://cssgallery.info/~cssgalle/wp-content/uploads/2008/03/home_over.jpg" title="home over image"><img src="http://cssgallery.info/~cssgalle/wp-content/uploads/2008/03/home_over.jpg" alt="home over image" /></a></p>
<p>we will create the menu background like this:</p>
<p><a href="http://cssgallery.info/~cssgalle/wp-content/uploads/2008/03/home1.jpg" title="menu background"><img src="http://cssgallery.info/~cssgalle/wp-content/uploads/2008/03/home1.jpg" alt="menu background" /></a></p>
<p>You can see the menu has doubled the height and the roll-over image is above the normal one &#8211; and now has 78px instead 39px. The CSS code will then look like this:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">a<span style="color: #6666ff;">.menu_home</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">39px</span><span style="color: #00AA00;">;</span>width<span style="color: #00AA00;">:</span><span style="color: #933;">6.625em</span><span style="color: #00AA00;">;</span>color<span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>text-decoration<span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>float<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;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">&quot;images/home.jpg&quot;</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">bottom</span> <span style="color: #000000; font-weight: bold;">left</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
a<span style="color: #3333ff;">:hover</span><span style="color: #6666ff;">.menu_home</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">39px</span><span style="color: #00AA00;">;</span>color<span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>text-decoration<span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">&quot;images/home.jpg&quot;</span><span style="color: #00AA00;">&#41;</span>  <span style="color: #993333;">no-repeat</span> <span style="color: #000000; font-weight: bold;">top</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>this way the image will be loaded from the start and first we will display the bottom part and on mouse over we will display its top part. Simple, isn&#8217;t it?</p>
<p>You can see the working example and code <a href="http://cssgallery.info/wp-content/preload/" target="_blank">here</a>.</p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;title=A+functional+Mozilla+menu+roll-over+effect+-+no+preload+necessary&amp;description=A%20functional%20Mozilla%20menu%20roll-over%20effect%20-%20no%20preload%20necessary" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;title=A+functional+Mozilla+menu+roll-over+effect+-+no+preload+necessary" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;title=A+functional+Mozilla+menu+roll-over+effect+-+no+preload+necessary" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;title=A+functional+Mozilla+menu+roll-over+effect+-+no+preload+necessary" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;title=A+functional+Mozilla+menu+roll-over+effect+-+no+preload+necessary" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;t=A+functional+Mozilla+menu+roll-over+effect+-+no+preload+necessary" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;title=A+functional+Mozilla+menu+roll-over+effect+-+no+preload+necessary" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;title=A+functional+Mozilla+menu+roll-over+effect+-+no+preload+necessary&amp;srcUrl=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/&amp;srcTitle=A+functional+Mozilla+menu+roll-over+effect+-+no+preload+necessary&amp;snippet=A%20functional%20Mozilla%20menu%20roll-over%20effect%20-%20no%20preload%20necessary" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/a-functional-mozilla-menu-roll-over-effect-no-preload-necessary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS and Ajax rating scripts</title>
		<link>http://cssgallery.info/css-and-ajax-rating-scripts/</link>
		<comments>http://cssgallery.info/css-and-ajax-rating-scripts/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 23:46:43 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Ajax rating scripts]]></category>
		<category><![CDATA[Creating an AJAX Rating Widget]]></category>
		<category><![CDATA[CSS rating scripts]]></category>
		<category><![CDATA[CSS Star rating redux]]></category>
		<category><![CDATA[CSS: Star Rater Ajax Version]]></category>
		<category><![CDATA[jQuery Ajax rater plugin]]></category>
		<category><![CDATA[percentage based Star Rating]]></category>
		<category><![CDATA[percentage rating]]></category>
		<category><![CDATA[rate]]></category>
		<category><![CDATA[star rating]]></category>
		<category><![CDATA[Starbox]]></category>
		<category><![CDATA[stars]]></category>
		<category><![CDATA[Unobtrusive AJAX Star Rating Bar]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://cssgallery.info/css-and-ajax-rating-scripts/</guid>
		<description><![CDATA[We need rating scripts for different situations in our webpages. For example we want visitors to rate a wallpaper in a wallpapers site, or a product in a shopping cart. For this we can use one of the rating scripts presented below: Unobtrusive AJAX Star Rating Bar The guys from Masuga Design made this script [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fcss-and-ajax-rating-scripts%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fcss-and-ajax-rating-scripts%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>We need rating scripts for different situations in our webpages. For example we want visitors to rate a wallpaper in a wallpapers site, or a product in a shopping cart. For this we can use one of the rating scripts presented below:</p>
<h2><a href="http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/" title="Unobtrusive AJAX Star Rating Bar" target="_blank">Unobtrusive AJAX Star Rating Bar</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/masuga.png" alt="Unobtrusive AJAX Star Rating Bar" height="315" width="458" /> </p>
<p>The guys from Masuga Design made this script unobtrusive, configurable( you can set number of stars)  and provided the backend too &#8211;  which use PHP and MySQL. The js part is based on prototype/scrptacolous.</p>
<h2><a href="http://www.progressive-coding.com/tutorial.php?id=6" title="Creating an AJAX Rating Widget" target="_blank">Creating an AJAX Rating Widget</a></h2>
<p>Sadly I did not find a demo for this. The article is more a tutorial that covers all clientside part, and also shows how to implement  the rating system using 4 major javascript frameworks ( dojo,mootools,prototype and jquery). For jQuery it has a download archive too. It is good if you want to make your own rating script  and don&#8217;t know where to start from.</p>
<h2><a href="http://komodomedia.com/blog/index.php/2007/01/20/css-star-rating-redux/" title="CSS Star rating redux " target="_blank">CSS Star rating redux</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/komodomedia.png" alt="CSS Star rating redux" /> </p>
<p>This is a CSS only solution. The ajax part or backend is not covered here. The technique is crossbrowser, permits multiple sizes (see demo on their site) and is linked to another two posts that teach you how to create this.</p>
<h2><a href="http://www.yvoschaap.com/index.php/weblog/css_star_rater_ajax_version/">CSS: Star Rater Ajax Version</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/yvoschaap.png" alt="CSS: Star Rater Ajax Version" height="200" width="476" /> </p>
<p>Author took previous presented solutions and added the JS and PHP part. As posted on site  &#8220;<strong>not a beginners tutorial &#8211; and just follow the steps</strong>&#8221;  is presented in 5 short clear steps.</p>
<h2><a href="http://www.nofunc.com/AJAX_Star_Rating/" title="percentage based Star Rating" target="_blank">percentage based Star Rating</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/nofunc.png" alt="percentage based Star Rating" height="243" width="494" /> </p>
<p>A minimal but complete rating system. This script i scapable to rate in percents, so you&#8217;ll have a more accuracy.To adapt  it to your design you will need to dig into code and make changes needed.The stars are one sprite image as background, with variable background position.</p>
<h2><a href="http://www.beauscott.com/2006/08/26/ajax-rating-stars/" rel="bookmark" title="Permanent Link to AJAX Rating Stars">AJAX Rating Stars</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/beauscott.png" alt="AJAX Rating Stars Demo" height="193" width="497" /> </p>
<p>Based on prototype,the raw demo of the script shows it&#8217;s capabilities , like locking the staring, callbacks,external set, bindings to form elements.</p>
<h2><a href="http://widgets.rabidlabs.net/ratings/v1.22/" title="Rabid Ratings v1.22" target="_blank">Rabid Ratings v1.22</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/rabid.png" alt="Rabid Ratings v1.22" /> </p>
<p>This script uses png with transparency,is animated, and has a &#8216;snap&#8217; configuration that allows you to set steps for rating. Is mootools based, and will send the rating to an url set when you create the instance of the rating class. It also provides a tutorial of theme skinning.</p>
<h2><a href="http://www.nickstakenburg.com/projects/starbox/" title="Starbox 0.3" target="_blank">Starbox 0.3</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/starbox.png" alt="Starbox 0.3" height="236" width="474" /> </p>
<p>&#8220;Starbox allows you to easily create all kinds of rating boxes using just one PNG image.&#8221; It uses prototype and for effects scriptaculous.</p>
<h2><a href="http://www.m3nt0r.de/devel/raterDemo/" title=" jQuery Ajax Rater Plugin" target="_blank"> jQuery Ajax Rater Plugin</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/rater.png" alt="jQuery Ajax Rater Plugin" /> </p>
<p>This can have variable number or sizes of stars &#8211; starting from 1 like gmail starring system. Is based on jquery.</p>
<p>Please let me know if you know other rating scripts/techniques.</p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts&amp;description=We%20need%20rating%20scripts%20for%20different%20situations%20in%20our%20webpages.%20For%20example%20we%20want%20visitors%20to%20rate%20a%20wallpaper%20in%20a%20wallpapers%20site%2C%20or%20a%20product%20in%20a%20shopping%20cart.%20For%20this%20we%20can%20use%20one%20of%20the%20rating%20scripts%20presented%20below%3A%0D%0A%0D%0AUnobtrusive%20AJAX%20Star%20Rating%20Bar%0D%0A%20%0D%0A%0D%0AThe%20guys%20from%20Masuga%20Desig" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/css-and-ajax-rating-scripts/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;t=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts&amp;srcUrl=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;srcTitle=CSS+and+Ajax+rating+scripts&amp;snippet=We%20need%20rating%20scripts%20for%20different%20situations%20in%20our%20webpages.%20For%20example%20we%20want%20visitors%20to%20rate%20a%20wallpaper%20in%20a%20wallpapers%20site%2C%20or%20a%20product%20in%20a%20shopping%20cart.%20For%20this%20we%20can%20use%20one%20of%20the%20rating%20scripts%20presented%20below%3A%0D%0A%0D%0AUnobtrusive%20AJAX%20Star%20Rating%20Bar%0D%0A%20%0D%0A%0D%0AThe%20guys%20from%20Masuga%20Desig" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/css-and-ajax-rating-scripts/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/css-and-ajax-rating-scripts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>css shadows &#8211; images and boxes</title>
		<link>http://cssgallery.info/css-shadows-images-and-boxes/</link>
		<comments>http://cssgallery.info/css-shadows-images-and-boxes/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 13:24:06 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[5 CSSriffic Treatments to Make Your Images Stand Out]]></category>
		<category><![CDATA[css drop shadows]]></category>
		<category><![CDATA[CSS shadow kerfuffle]]></category>
		<category><![CDATA[CSSriffic]]></category>
		<category><![CDATA[shadows]]></category>
		<category><![CDATA[yDSF - Robust CSS Drop Shadows]]></category>

		<guid isPermaLink="false">http://cssgallery.info/css-shadows-images-and-boxes/</guid>
		<description><![CDATA[As we said in a previous post we&#8217;ll try to bring here some resources related to CSS shadows applied to images or boxes. CSS shadow kerfuffle &#8220;&#8230; in addition to just the plain old img element, an enclosing div plus four additional divs to handle the corners&#8221;. CSS Drop Shadows This technique uses an outer [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fcss-shadows-images-and-boxes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fcss-shadows-images-and-boxes%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>As we said in a <a href="http://cssgallery.info/css-shadows-text/" title="http://cssgallery.info/css-shadows-text/">previous post</a>  we&#8217;ll try to bring here some resources related to CSS shadows applied to images or boxes.</p>
<h2><a href="http://theshapeofdays.com/2005/11/29/my-contribution-to-the-css-shadow-kerfuffle.html">CSS shadow kerfuffle</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/theshapeofdays.png" alt="theshapeofdays" height="242" width="507" /> </p>
<p>&#8220;&#8230; in addition to just the plain old <code>img</code> element, an enclosing <code>div</code> plus <em>four</em> additional <code>div</code>s to handle the corners&#8221;.</p>
<h2><a href="http://www.alistapart.com/articles/cssdropshadows">CSS Drop Shadows</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/alistapart.png" alt="CSS Drop Shadows" height="240" width="509" /> </p>
<p>This technique uses an outer div for images, or 2 for text. For text basically is building a box around text, then is treated as block element &#8211; like image.</p>
<h2><a href="http://phoenity.com/newtedge/drop_shadow/" title="Drop shadow CSS" target="_blank">Drop shadow CSS</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/dropshadowcss.png" alt="Drop shadow CSS" /> </p>
<p>The author of this one, make uses of 3 overlapped boxes, with different backgrounds.It has Two methods, one pure css, one using images.</p>
<p>Also it provides a solution for text-shadow.</p>
<h2><a href="http://www.sixapart.com/pronet/articles/ydsf_-_robust_c.html" title="yDSF - Robust CSS Drop Shadows" target="_blank">yDSF &#8211; Robust CSS Drop Shadows</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/ydsf.png" alt="yDSF - Robust CSS Drop Shadows" /> </p>
<p>from the site:  &#8220;yDSF is comprised of some lightweight structural (non-semantic) XHTML markup 	and a few CSS classes.&#8221;</p>
<h2><a href="http://wubbleyew.com/tests/dropshadows.htm" title="CSS Drop Shadow Tests" target="_blank">CSS Drop Shadow Tests</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/wubbleyew.png" alt="CSS Drop Shadow Tests" height="184" width="516" /> </p>
<p>Here is presented a way to allow multiple block level elements under same dropshadow box. It separate the border and the shadow in 2 separate wrappers, and use position:relative.</p>
<h2><a href="http://nontroppo.org/test/shadow.html" title=" flexible drop shadowed boxes using CSS" target="_blank">Flexible drop shadowed boxes using CSS</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/nontroppo.png" alt="flexible drop shadowed boxes using CSS" /> </p>
<p>This one uses 2 divs, the holder, with background set to shadow image(gif or png), and a wrapper div, inside the holder, positioned relative, with some negative margins.</p>
<p>Those above are pure css techniques. In a following post, we&#8217;ll try to add some resources that use javascript for this.</p>
<h2>Update</h2>
<p><a href="http://www.cssnewbie.com/css-rules/5-cssriffic-treatments-images/" target="_blank" title="5 CSSriffic Treatments to Make Your Images Stand Out">Cssnewbie &#8211; </a><a href="http://www.cssnewbie.com/css-rules/5-cssriffic-treatments-images/" title="5 CSSriffic Treatments to Make Your Images Stand Out" target="_blank">5 CSSriffic Treatments to Make Your Images Stand Out</a></p>
<p>added in comment#2 his technique.<br />
<img src="http://cssgallery.info/wp-content/uploads/2008/02/cssriffic.png" alt="Cssnewbie" height="498" width="488" /> </p>
<p>The  markup get another wrapping div, and can be used with css border or a png image for browsers that allows alpha channel.</p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/css-shadows-images-and-boxes/&amp;title=css+shadows+-+images+and+boxes&amp;description=As%20we%20said%20in%20a%20previous%20post%20%20we%27ll%20try%20to%20bring%20here%20some%20resources%20related%20to%20CSS%20shadows%20applied%20to%20images%20or%20boxes.%0D%0A%0D%0A%0D%0ACSS%20shadow%20kerfuffle%0D%0A%20%0D%0A%0D%0A%22...%20in%20addition%20to%20just%20the%20plain%20old%20img%20element%2C%20an%20enclosing%20div%20plus%20four%20additional%20divs%20to%20handle%20the%20corners%22.%0D%0A%0D%0ACSS%20Drop%20Shadows%0D%0A%20%0D%0A%0D%0ATh" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/css-shadows-images-and-boxes/&amp;title=css+shadows+-+images+and+boxes" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/css-shadows-images-and-boxes/&amp;title=css+shadows+-+images+and+boxes" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/css-shadows-images-and-boxes/&amp;title=css+shadows+-+images+and+boxes" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/css-shadows-images-and-boxes/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/css-shadows-images-and-boxes/&amp;title=css+shadows+-+images+and+boxes" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/css-shadows-images-and-boxes/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/css-shadows-images-and-boxes/&amp;t=css+shadows+-+images+and+boxes" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/css-shadows-images-and-boxes/&amp;title=css+shadows+-+images+and+boxes" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/css-shadows-images-and-boxes/&amp;title=css+shadows+-+images+and+boxes&amp;srcUrl=http://cssgallery.info/css-shadows-images-and-boxes/&amp;srcTitle=css+shadows+-+images+and+boxes&amp;snippet=As%20we%20said%20in%20a%20previous%20post%20%20we%27ll%20try%20to%20bring%20here%20some%20resources%20related%20to%20CSS%20shadows%20applied%20to%20images%20or%20boxes.%0D%0A%0D%0A%0D%0ACSS%20shadow%20kerfuffle%0D%0A%20%0D%0A%0D%0A%22...%20in%20addition%20to%20just%20the%20plain%20old%20img%20element%2C%20an%20enclosing%20div%20plus%20four%20additional%20divs%20to%20handle%20the%20corners%22.%0D%0A%0D%0ACSS%20Drop%20Shadows%0D%0A%20%0D%0A%0D%0ATh" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/css-shadows-images-and-boxes/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/css-shadows-images-and-boxes/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Css shadows &#8211; text</title>
		<link>http://cssgallery.info/css-shadows-text/</link>
		<comments>http://cssgallery.info/css-shadows-text/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 20:17:26 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Creating Cross Browser Compatible CSS Text Shadows]]></category>
		<category><![CDATA[css drop shadows]]></category>
		<category><![CDATA[css text shadows]]></category>
		<category><![CDATA[drop shadow]]></category>
		<category><![CDATA[shadows]]></category>

		<guid isPermaLink="false">http://cssgallery.info/css-shadows-text/</guid>
		<description><![CDATA[Shadows are a graphical improvements for design or the website&#8217;s usability. We may want to create a design with shadows under images or boxes, but shadows also can improve usability and accesibility for the text positioned over the images. Text shadows In this post we&#8217;ll try to present some css techniques for text shadows and [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fcss-shadows-text%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fcss-shadows-text%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Shadows are a graphical improvements for design or the website&#8217;s usability. We may want to create a design with shadows under images or boxes, but shadows also can improve usability and accesibility for the text positioned over the images.</p>
<h2>Text shadows</h2>
<p>In this post we&#8217;ll try to present some css techniques for text shadows and in a future posts  we&#8217;ll try to gather some CSS image/box shadows continued with Javascripts that can do this for us.</p>
<h2><a href="http://www.workingwith.me.uk/articles/css/cross-browser-drop-shadows">Creating Cross Browser Compatible CSS Text Shadows</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/workingwithme.png" alt="Creating Cross Browser Compatible CSS Text Shadows" /> </p>
<p>This technique use different browsers behaviour (for example use filter for ie , or text-shadow for safari).</p>
<h2><a href="http://www.peterre.info/shadow.html" title="Shadow" target="_blank">Shadow</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/shadows.png" alt="Shadow" height="223" width="450" /> </p>
<p>This one makes use of &#8220;content&#8221; attribute in css. You will have to create an id for every  item u want shadowed and set the content attribute the same with the text displayed.</p>
<h2><a href="http://www.designmeme.com/articles/dropshadows/" tip="Permanent Link to " rel="bookmark">CSS Drop Shadows</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/designmeme.png" alt="CSS Drop Shadows" height="161" width="454" /> </p>
<p>This one use same &#8220;content&#8221;  attribute, but also it uses  selectors so you can setup a class for this. Instead for every shadowed item, you&#8217;ll have to set &#8220;title&#8221;attribute. Is not working in IE 6.</p>
<h2><a href="http://psacake.com/web/bz.asp" title="Drop Shadow" target="_blank">Drop Shadow</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/psacake.png" alt="Drop Shadow" height="169" width="457" /> </p>
<p>&#8221; Use absolute positioning to make a duplicate block of text. Then offset the first text block and use a dark gray color for the text. &#8221;</p>
<p>Let us know if we missed something.</p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/css-shadows-text/&amp;title=Css+shadows+-+text&amp;description=Shadows%20are%20a%20graphical%20improvements%20for%20design%20or%20the%20website%27s%20usability.%20We%20may%20want%20to%20create%20a%20design%20with%20shadows%20under%20images%20or%20boxes%2C%20but%20shadows%20also%20can%20improve%20usability%20and%20accesibility%20for%20the%20text%20positioned%20over%20the%20images.%0D%0A%0D%0AText%20shadows%0D%0AIn%20this%20post%20we%27ll%20try%20to%20present%20some%20css%20" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/css-shadows-text/&amp;title=Css+shadows+-+text" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/css-shadows-text/&amp;title=Css+shadows+-+text" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/css-shadows-text/&amp;title=Css+shadows+-+text" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/css-shadows-text/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/css-shadows-text/&amp;title=Css+shadows+-+text" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/css-shadows-text/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/css-shadows-text/&amp;t=Css+shadows+-+text" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/css-shadows-text/&amp;title=Css+shadows+-+text" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/css-shadows-text/&amp;title=Css+shadows+-+text&amp;srcUrl=http://cssgallery.info/css-shadows-text/&amp;srcTitle=Css+shadows+-+text&amp;snippet=Shadows%20are%20a%20graphical%20improvements%20for%20design%20or%20the%20website%27s%20usability.%20We%20may%20want%20to%20create%20a%20design%20with%20shadows%20under%20images%20or%20boxes%2C%20but%20shadows%20also%20can%20improve%20usability%20and%20accesibility%20for%20the%20text%20positioned%20over%20the%20images.%0D%0A%0D%0AText%20shadows%0D%0AIn%20this%20post%20we%27ll%20try%20to%20present%20some%20css%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/css-shadows-text/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/css-shadows-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounded corners generators</title>
		<link>http://cssgallery.info/rounded-corners-generators/</link>
		<comments>http://cssgallery.info/rounded-corners-generators/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 23:04:03 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[corners]]></category>
		<category><![CDATA[Cornershop]]></category>
		<category><![CDATA[CSS Rounded Box Generator]]></category>
		<category><![CDATA[curved]]></category>
		<category><![CDATA[curvy]]></category>
		<category><![CDATA[Rounded corners generators]]></category>
		<category><![CDATA[RoundedCornr]]></category>
		<category><![CDATA[Spanky Corners]]></category>
		<category><![CDATA[Spiffy Corners]]></category>

		<guid isPermaLink="false">http://cssgallery.info/rounded-corners-generators/</guid>
		<description><![CDATA[If you don't have the time, tools, knowledge or simply not in the mood to code, there are some tools that can help you make your rounded corners.]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Frounded-corners-generators%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Frounded-corners-generators%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>If you don&#8217;t have the time, tools, knowledge or simply not in the mood to code  there are some tools that can help you make your rounded corners:</p>
<p><a href="http://www.roundedcornr.com/" title="RoundedCornr">RoundedCornr</a></p>
<p><a href="http://www.neuroticweb.com/recursos/css-rounded-box/" title="CSS Rounded Box Generator (Beta)">CSS Rounded Box Generator (Beta)</a></p>
<p><a href="http://www.spiffycorners.com/" title="Spiffy Corners">Spiffy Corners</a></p>
<p><a href="http://tools.sitepoint.com/spanky/" title="Spanky Corners">Spanky Corners</a></p>
<p><a href="http://wigflip.com/cornershop/" title="Cornershop">Cornershop</a></p>
<p><a href="http://www.allcrunchy.com/Web_Stuff/Rounded_Corners/" title="Rounded Corners Generator">Rounded Corners Generator</a></p>
<p><a href="http://www.cssportal.com/generators/rounded-corners.htm" title="Rounded Corner Generator - css portal -">Rounded Corner Generator &#8211; css portal -</a></p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/rounded-corners-generators/&amp;title=Rounded+corners+generators&amp;description=If%20you%20don%27t%20have%20the%20time%2C%20tools%2C%20knowledge%20or%20simply%20not%20in%20the%20mood%20to%20code%2C%20there%20are%20some%20tools%20that%20can%20help%20you%20make%20your%20rounded%20corners." rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/rounded-corners-generators/&amp;title=Rounded+corners+generators" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/rounded-corners-generators/&amp;title=Rounded+corners+generators" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/rounded-corners-generators/&amp;title=Rounded+corners+generators" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/rounded-corners-generators/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/rounded-corners-generators/&amp;title=Rounded+corners+generators" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/rounded-corners-generators/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/rounded-corners-generators/&amp;t=Rounded+corners+generators" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/rounded-corners-generators/&amp;title=Rounded+corners+generators" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/rounded-corners-generators/&amp;title=Rounded+corners+generators&amp;srcUrl=http://cssgallery.info/rounded-corners-generators/&amp;srcTitle=Rounded+corners+generators&amp;snippet=If%20you%20don%27t%20have%20the%20time%2C%20tools%2C%20knowledge%20or%20simply%20not%20in%20the%20mood%20to%20code%2C%20there%20are%20some%20tools%20that%20can%20help%20you%20make%20your%20rounded%20corners." rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/rounded-corners-generators/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/rounded-corners-generators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounded cornes &#8211; CSS</title>
		<link>http://cssgallery.info/rounded-cornes-css/</link>
		<comments>http://cssgallery.info/rounded-cornes-css/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 13:48:13 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[CSS and Round Corners: Build Boxes with Curves]]></category>
		<category><![CDATA[CSS Liquid Round Corners]]></category>
		<category><![CDATA[CSS Mojo: Adding Visual Polish To Your Pages]]></category>
		<category><![CDATA[CSS resources for rounded corners]]></category>
		<category><![CDATA[css rounded corners]]></category>
		<category><![CDATA[CSS teaser box revisited]]></category>
		<category><![CDATA[curved]]></category>
		<category><![CDATA[Curved boxes in CSS]]></category>
		<category><![CDATA[curvy]]></category>
		<category><![CDATA[Mountaintop Corners]]></category>
		<category><![CDATA[Nifty Corners]]></category>
		<category><![CDATA[rounded corners]]></category>

		<guid isPermaLink="false">http://cssgallery.info/rounded-cornes-css/</guid>
		<description><![CDATA[Rounded corners are a challenge for every coder that wants to make a modern design. If the layout of the page is liquid a simple image is not enough anymore. In this article we&#8217;ll present some CSS resources for rounded corners. Nifty Corners: rounded corners without images CSS and Round Corners: Build Boxes with Curves [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Frounded-cornes-css%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Frounded-cornes-css%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Rounded corners are a challenge for every coder that wants to make a modern design. If the layout of the page is liquid  a simple image is not enough anymore. In this article we&#8217;ll present some CSS resources for rounded corners.</p>
<p><a href="http://www.html.it/articoli/nifty/index.html" title="Nifty Corners: rounded corners without images">Nifty Corners: rounded corners without images</a></p>
<p><a href="http://www.sitepoint.com/article/css-round-corners-boxes-curves" title="CSS and Round Corners: Build Boxes with Curves">CSS and Round Corners: Build Boxes with Curves</a></p>
<p><a href="http://kalsey.com/2003/07/rounded_corners_in_css/" title="Rounded corners in CSS">Rounded corners in CSS</a></p>
<p><a href="http://www.albin.net/css/roundedcorners" title="“Bullet-Proof” Rounded Corners">“Bullet-Proof” Rounded Corners</a></p>
<p><a href="http://www.schillmania.com/content/entries/2006/04/more-rounded-corners/" title=" More Rounded Corners with CSS">More Rounded Corners with CSS</a></p>
<p><a href="http://www.schillmania.com/content/entries/2006/04/more-rounded-corners/" title=" More Rounded Corners with CSS"></a><a href="http://www.lesliesommer.com/wdw07/html/" title="CSS Mojo: Adding Visual Polish To Your Pages">CSS Mojo: Adding Visual Polish To Your Pages</a></p>
<p><a href="http://blog.yosle.com/2007/09/20/css-round-corners/" rel="bookmark" title="Permanent Link to CSS Round Corners">CSS Round Corners</a></p>
<p><a href="http://cass-hacks.com/articles/code/css_borders_corners/" title="CSS - Single Image Fluid/Fixed Rounded Bordered Corners walkthrough"><acronym>CSS</acronym> &#8211; Single Image Fluid/Fixed Rounded Bordered Corners walkthrough</a></p>
<p><a href="http://www.nuff-respec.com/technology/rounded-corners-for-fixed-width-css-only" rel="bookmark">Rounded Corners for Fixed width (css only)</a></p>
<p><a href="http://shapeshed.com/journal/curved_boxes_in_css/" title="Curved boxes in CSS">Curved boxes in CSS</a></p>
<p><a href="http://www.tjkdesign.com/articles/roundbox.asp" title="Lean and Clean CSS boxes">Lean and Clean CSS boxes</a></p>
<p><a href="http://www.alistapart.com/articles/mountaintop">Mountaintop Corners</a></p>
<p><a href="http://www.search-this.com/2007/02/12/css-liquid-round-corners/" title="CSS Liquid Round Corners">CSS Liquid Round Corners</a></p>
<p><a href="http://www.alistapart.com/articles/customcorners">CSS Design: Creating Custom Corners &amp; Borders</a></p>
<p><a href="http://www.modxcms.com/simple-rounded-corner-css-boxes.html" title="Simple Rounded Corner CSS Boxes">Simple Rounded Corner CSS Boxes</a></p>
<p><a href="http://www.modxcms.com/simple-rounded-corner-css-boxes.html" title="Simple Rounded Corner CSS Boxes"></a><a href="http://www.sovavsiti.cz/css/corners.html" title="Round Corners">Round Corners</a></p>
<p><a href="http://www.456bereastreet.com/archive/200406/css_teaser_box_revisited/" title="CSS teaser box revisited">CSS teaser box revisited</a></p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/rounded-cornes-css/&amp;title=Rounded+cornes+-+CSS&amp;description=Rounded%20corners%20are%20a%20challenge%20for%20every%20coder%20that%20wants%20to%20make%20a%20modern%20design.%20If%20the%20layout%20of%20the%20page%20is%20liquid%20%20a%20simple%20image%20is%20not%20enough%20anymore.%20In%20this%20article%20we%27ll%20present%20some%20CSS%20resources%20for%20rounded%20corners.%0D%0A%0D%0ANifty%20Corners%3A%20rounded%20corners%20without%20images%0D%0A%0D%0ACSS%20and%20Round%20Corne" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/rounded-cornes-css/&amp;title=Rounded+cornes+-+CSS" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/rounded-cornes-css/&amp;title=Rounded+cornes+-+CSS" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/rounded-cornes-css/&amp;title=Rounded+cornes+-+CSS" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/rounded-cornes-css/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/rounded-cornes-css/&amp;title=Rounded+cornes+-+CSS" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/rounded-cornes-css/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/rounded-cornes-css/&amp;t=Rounded+cornes+-+CSS" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/rounded-cornes-css/&amp;title=Rounded+cornes+-+CSS" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/rounded-cornes-css/&amp;title=Rounded+cornes+-+CSS&amp;srcUrl=http://cssgallery.info/rounded-cornes-css/&amp;srcTitle=Rounded+cornes+-+CSS&amp;snippet=Rounded%20corners%20are%20a%20challenge%20for%20every%20coder%20that%20wants%20to%20make%20a%20modern%20design.%20If%20the%20layout%20of%20the%20page%20is%20liquid%20%20a%20simple%20image%20is%20not%20enough%20anymore.%20In%20this%20article%20we%27ll%20present%20some%20CSS%20resources%20for%20rounded%20corners.%0D%0A%0D%0ANifty%20Corners%3A%20rounded%20corners%20without%20images%0D%0A%0D%0ACSS%20and%20Round%20Corne" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/rounded-cornes-css/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/rounded-cornes-css/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
