<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Tooltips with CSS3</title>
	<atom:link href="http://www.css3.info/tooltips-with-css3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.css3.info/tooltips-with-css3/</link>
	<description>All you ever needed to know about CSS3</description>
	<lastBuildDate>Mon, 22 Mar 2010 06:11:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: 30+ Useful CSS3 Tutorials &#124; DesignerWall</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-258697</link>
		<dc:creator>30+ Useful CSS3 Tutorials &#124; DesignerWall</dc:creator>
		<pubDate>Thu, 18 Mar 2010 14:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-258697</guid>
		<description>[...]  Tooltip with CSS3 [...]</description>
		<content:encoded><![CDATA[<p>[...]  Tooltip with CSS3 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Barber</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-258220</link>
		<dc:creator>Ben Barber</dc:creator>
		<pubDate>Tue, 02 Mar 2010 14:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-258220</guid>
		<description>James, this is genious. I&#039;m jealous i didn&#039;t think of it first! 
 
I really like this solution, especially when the pseudo element is positioned *above* the element instead of below in order to not conflict with the position of the UA&#039;s title rendering. The only drawback is that if title is too long, your text could wrap and obscure the content. 
 
Add a few more CSS3 properties and your CSS3 tooltip is really slick. 
 
a:before { 
  content: attr(title); 
  display: none; 
  position: absolute; 
  width: 15em; 
  top: -3em; 
  left: 0em; 
  text-align: center; 
  padding: .5em; 
  background-color: white; 
  -webkit-box-shadow: 0 .1em .5em #333; 
  -moz-box-shadow: 0 .1em .5em #333; 
  box-shadow: 0 .1em .5em #333; 
} 
a:hover:before { 
  display: block; 
} </description>
		<content:encoded><![CDATA[<p>James, this is genious. I&#039;m jealous i didn&#039;t think of it first!</p>
<p>I really like this solution, especially when the pseudo element is positioned *above* the element instead of below in order to not conflict with the position of the UA&#039;s title rendering. The only drawback is that if title is too long, your text could wrap and obscure the content.</p>
<p>Add a few more CSS3 properties and your CSS3 tooltip is really slick.</p>
<p>a:before {</p>
<p>  content: attr(title);</p>
<p>  display: none;</p>
<p>  position: absolute;</p>
<p>  width: 15em;</p>
<p>  top: -3em;</p>
<p>  left: 0em;</p>
<p>  text-align: center;</p>
<p>  padding: .5em;</p>
<p>  background-color: white;</p>
<p>  -webkit-box-shadow: 0 .1em .5em #333;</p>
<p>  -moz-box-shadow: 0 .1em .5em #333;</p>
<p>  box-shadow: 0 .1em .5em #333;</p>
<p>}</p>
<p>a:hover:before {</p>
<p>  display: block;</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Css3 kaynakları &#124; kaynaklar</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-257919</link>
		<dc:creator>Css3 kaynakları &#124; kaynaklar</dc:creator>
		<pubDate>Tue, 09 Feb 2010 12:02:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-257919</guid>
		<description>[...] 16. Tooltips with CSS3 [...]</description>
		<content:encoded><![CDATA[<p>[...] 16. Tooltips with CSS3 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 25 Essential Tutorials And Resources For Learning CSS3 &#124; CSS Reflex - Design Blog &#124; Web Design &#124; Inspiration and Resources for Designers</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-257916</link>
		<dc:creator>25 Essential Tutorials And Resources For Learning CSS3 &#124; CSS Reflex - Design Blog &#124; Web Design &#124; Inspiration and Resources for Designers</dc:creator>
		<pubDate>Tue, 09 Feb 2010 02:26:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-257916</guid>
		<description>[...] 16. Tooltips with CSS3 [...]</description>
		<content:encoded><![CDATA[<p>[...] 16. Tooltips with CSS3 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hubert</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-257769</link>
		<dc:creator>Hubert</dc:creator>
		<pubDate>Sun, 17 Jan 2010 00:49:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-257769</guid>
		<description> change :hover to :focus
div:focus{
	z-index:10;
	position:relative;
}

div:focus::before{
	width:200px;
	display:block;
	background:yellow;
	border:1px solid black;
	padding:8px;
	margin:25px 0 0 10px;
}
and add two tabindex=&quot;0&quot; to divs (or change &quot;div&quot; tag to &quot;a&quot; tag)

Now we have a solution to display title attribut for who navigate with the tab key without js.
lol</description>
		<content:encoded><![CDATA[<p> change :hover to :focus<br />
div:focus{<br />
	z-index:10;<br />
	position:relative;<br />
}</p>
<p>div:focus::before{<br />
	width:200px;<br />
	display:block;<br />
	background:yellow;<br />
	border:1px solid black;<br />
	padding:8px;<br />
	margin:25px 0 0 10px;<br />
}<br />
and add two tabindex=&#8221;0&#8243; to divs (or change &#8220;div&#8221; tag to &#8220;a&#8221; tag)</p>
<p>Now we have a solution to display title attribut for who navigate with the tab key without js.<br />
lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS3 Gallery, Showcase &#38; Inspiration. Showcasing the best CSS3 Web Design on the Internet &#124; CSS3 Tutorials &#124; CSS 3 Gallery</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-257768</link>
		<dc:creator>CSS3 Gallery, Showcase &#38; Inspiration. Showcasing the best CSS3 Web Design on the Internet &#124; CSS3 Tutorials &#124; CSS 3 Gallery</dc:creator>
		<pubDate>Sat, 16 Jan 2010 16:38:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-257768</guid>
		<description>[...] Tooltips with CSS3 – How to make use of the :before (or :after) pseudo element and content property, combined with the :hover pseudo class to create nice tooltips. [...]</description>
		<content:encoded><![CDATA[<p>[...] Tooltips with CSS3 – How to make use of the :before (or :after) pseudo element and content property, combined with the :hover pseudo class to create nice tooltips. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 網站製作學習誌 &#187; [Web] 連結分享</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-257317</link>
		<dc:creator>網站製作學習誌 &#187; [Web] 連結分享</dc:creator>
		<pubDate>Wed, 25 Nov 2009 02:40:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-257317</guid>
		<description>[...] Tooltips with CSS3 &#8211; CSS3 . Info [...]</description>
		<content:encoded><![CDATA[<p>[...] Tooltips with CSS3 &#8211; CSS3 . Info [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 50+ Stunning CSS3 Articles, Cheat Sheets and Tutorials Collections&#160;&#124;&#160;tripwire magazine</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-257218</link>
		<dc:creator>50+ Stunning CSS3 Articles, Cheat Sheets and Tutorials Collections&#160;&#124;&#160;tripwire magazine</dc:creator>
		<pubDate>Sun, 15 Nov 2009 11:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-257218</guid>
		<description>[...] an image gallery with :target – How to use the new CSS3 selector Tooltips with CSS3 – How to make use of the :before (or :after) pseudo element [...]</description>
		<content:encoded><![CDATA[<p>[...] an image gallery with :target – How to use the new CSS3 selector Tooltips with CSS3 – How to make use of the :before (or :after) pseudo element [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS3的新功能快速体验和应用 &#124; CssRainBow.cn</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-254997</link>
		<dc:creator>CSS3的新功能快速体验和应用 &#124; CssRainBow.cn</dc:creator>
		<pubDate>Mon, 21 Sep 2009 07:59:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-254997</guid>
		<description>[...] CSS3 的提示文本 [...]</description>
		<content:encoded><![CDATA[<p>[...] CSS3 的提示文本 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sundowatch</title>
		<link>http://www.css3.info/tooltips-with-css3/comment-page-1/#comment-253200</link>
		<dc:creator>sundowatch</dc:creator>
		<pubDate>Mon, 24 Aug 2009 23:49:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.css3.info/tooltips-with-css3/#comment-253200</guid>
		<description>Hey I was doing this job with jQuery before CSS3.

Thanks CSS3.. </description>
		<content:encoded><![CDATA[<p>Hey I was doing this job with jQuery before CSS3.</p>
<p>Thanks CSS3.. </p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/


Served from: css3.info @ 2010-03-22 07:26:24 -->