<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: CSS Opacity That Doesn&#8217;t Affect Child Elements</title>
	<atom:link href="http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/</link>
	<description>Web Design Articles &#38; Tutorials. To make the web impressive.</description>
	<lastBuildDate>Tue, 07 Feb 2012 20:16:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ilya</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-7270</link>
		<dc:creator>Ilya</dc:creator>
		<pubDate>Fri, 08 Oct 2010 06:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-7270</guid>
		<description>I agree with the sentiments that this is a less then desirable solution. I was looking for something that would replace jQuery but I guess this can be easily achieved with Javascript. Great comments.</description>
		<content:encoded><![CDATA[<p>I agree with the sentiments that this is a less then desirable solution. I was looking for something that would replace jQuery but I guess this can be easily achieved with Javascript. Great comments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vimeo player inside translucent border</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-6961</link>
		<dc:creator>Vimeo player inside translucent border</dc:creator>
		<pubDate>Tue, 21 Sep 2010 09:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-6961</guid>
		<description>[...] the child would actually be 25% of normal transparency.  Here is an article on the problem  CSS Opacity That Doesn&#8217;t Affect Child Elements   __________________ Follow me on [...]</description>
		<content:encoded><![CDATA[<p>[...] the child would actually be 25% of normal transparency.  Here is an article on the problem  CSS Opacity That Doesn&#8217;t Affect Child Elements   __________________ Follow me on [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Louis Lazaris</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-6922</link>
		<dc:creator>Louis Lazaris</dc:creator>
		<pubDate>Wed, 15 Sep 2010 20:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-6922</guid>
		<description>Make sure the element you want to avoid opacity is not a child element of the one that has opacity. That is, don&#039;t wrap it in the child DIV. Place it outside the parent in your HTML, then the opacity will not affect it. You then have to reposition the child using absolute positioning, to make it look like a real child element.</description>
		<content:encoded><![CDATA[<p>Make sure the element you want to avoid opacity is not a child element of the one that has opacity. That is, don&#8217;t wrap it in the child DIV. Place it outside the parent in your HTML, then the opacity will not affect it. You then have to reposition the child using absolute positioning, to make it look like a real child element.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shubham</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-6916</link>
		<dc:creator>shubham</dc:creator>
		<pubDate>Wed, 15 Sep 2010 17:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-6916</guid>
		<description>DUDE ITS NOT WORKING IN MOZZILA  FIREFOX 

REPLY ME THE ECXACT THE SOLUTION FOR OPACITY BLOCKING

HURRYYYYYYYYYYYYYYYYYYY

M WAITING 


   1. #alpha_wrapper {  
   2.     width: 540px;  
   3.     height: 360px;  
   4.     float: left;  
   5.     position: relative;  
   6.     color: #fff;  
   7. }  
   8.   
   9.     #alpha_2 {  
  10.         background: transparent url(bicycle.jpg) no-repeat 0 0;  
  11.         width: 540px;  
  12.         height: 440px;  
  13.         float: left;  
  14.         filter: alpha(opacity=30);  
  15.         -moz-opacity: 0.3;  
  16.         -khtml-opacity: 0.3;  
  17.         opacity: 0.3;  
  18.     }  
  19.   
  20.     #text_holder_2 {  
  21.         background: blue;  
  22.         position: absolute;  
  23.         top: 20px;  
  24.         left: 20px;  
  25.         width: 500px;  
  26.     }</description>
		<content:encoded><![CDATA[<p>DUDE ITS NOT WORKING IN MOZZILA  FIREFOX </p>
<p>REPLY ME THE ECXACT THE SOLUTION FOR OPACITY BLOCKING</p>
<p>HURRYYYYYYYYYYYYYYYYYYY</p>
<p>M WAITING </p>
<p>   1. #alpha_wrapper {<br />
   2.     width: 540px;<br />
   3.     height: 360px;<br />
   4.     float: left;<br />
   5.     position: relative;<br />
   6.     color: #fff;<br />
   7. }<br />
   8.<br />
   9.     #alpha_2 {<br />
  10.         background: transparent url(bicycle.jpg) no-repeat 0 0;<br />
  11.         width: 540px;<br />
  12.         height: 440px;<br />
  13.         float: left;<br />
  14.         filter: alpha(opacity=30);<br />
  15.         -moz-opacity: 0.3;<br />
  16.         -khtml-opacity: 0.3;<br />
  17.         opacity: 0.3;<br />
  18.     }<br />
  19.<br />
  20.     #text_holder_2 {<br />
  21.         background: blue;<br />
  22.         position: absolute;<br />
  23.         top: 20px;<br />
  24.         left: 20px;<br />
  25.         width: 500px;<br />
  26.     }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MikePriest</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-1951</link>
		<dc:creator>MikePriest</dc:creator>
		<pubDate>Wed, 21 Apr 2010 14:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-1951</guid>
		<description>IE 6 can support transparent PNG&#039;s take a look with javascript:

http://24ways.org/2007/supersleight-transparent-png-in-ie6 

jQuery version:

http://jquery.andreaseberhard.de/pngFix/

Hope this helps you out.</description>
		<content:encoded><![CDATA[<p>IE 6 can support transparent PNG&#8217;s take a look with javascript:</p>
<p><a href="http://24ways.org/2007/supersleight-transparent-png-in-ie6" rel="nofollow">http://24ways.org/2007/supersleight-transparent-png-in-ie6</a> </p>
<p>jQuery version:</p>
<p><a href="http://jquery.andreaseberhard.de/pngFix/" rel="nofollow">http://jquery.andreaseberhard.de/pngFix/</a></p>
<p>Hope this helps you out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-1882</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 12 Apr 2010 19:06:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-1882</guid>
		<description>@ Chris:

Thanks, that was a really good idea and easy solution to my problem.  The only issue is that IE6 doesn&#039;t support transparent .pngs, but that&#039;s a sacrifice.</description>
		<content:encoded><![CDATA[<p>@ Chris:</p>
<p>Thanks, that was a really good idea and easy solution to my problem.  The only issue is that IE6 doesn&#8217;t support transparent .pngs, but that&#8217;s a sacrifice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS Opacity: A Comprehensive Reference &#124; Impressive Webs Toronto</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-1663</link>
		<dc:creator>CSS Opacity: A Comprehensive Reference &#124; Impressive Webs Toronto</dc:creator>
		<pubDate>Fri, 26 Mar 2010 05:51:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-1663</guid>
		<description>[...] note about both RGBA and HSLA transparency is that these transparency settings don&#8217;t affect child elements the way the opacity property does. The alpha setting for RGBA and HSLA affects the opacity of the [...]</description>
		<content:encoded><![CDATA[<p>[...] note about both RGBA and HSLA transparency is that these transparency settings don&#8217;t affect child elements the way the opacity property does. The alpha setting for RGBA and HSLA affects the opacity of the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kravimir</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-1652</link>
		<dc:creator>Kravimir</dc:creator>
		<pubDate>Thu, 25 Mar 2010 18:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-1652</guid>
		<description>I&#039;ve used a similar technique before, but I gave &quot;position:relative&quot; to the element equivalent to &quot;#text_holder_2&quot; and &quot;position:absolute&quot; to the element equivalent to &quot;#alpha_2&quot; (and set z-index properties as needed) in order to avoid losing control of the document flow.

Now though, I use a PNG and DD_belatedPNG for IE6 ( http://www.dillerdesign.com/experiment/DD_belatedPNG/ ).</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used a similar technique before, but I gave &#8220;position:relative&#8221; to the element equivalent to &#8220;#text_holder_2&#8243; and &#8220;position:absolute&#8221; to the element equivalent to &#8220;#alpha_2&#8243; (and set z-index properties as needed) in order to avoid losing control of the document flow.</p>
<p>Now though, I use a PNG and DD_belatedPNG for IE6 ( <a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/" rel="nofollow">http://www.dillerdesign.com/experiment/DD_belatedPNG/</a> ).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-726</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Thu, 17 Sep 2009 16:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-726</guid>
		<description>The simplest and most reliable solution, it seems to me, is to employ a background image, such as a 1 x 1 pixel semi-transparent png or gif that repeats through the containing element.  This allows for a dynamic (elastic) result based upon the changing dimensions of the content within the container.</description>
		<content:encoded><![CDATA[<p>The simplest and most reliable solution, it seems to me, is to employ a background image, such as a 1 x 1 pixel semi-transparent png or gif that repeats through the containing element.  This allows for a dynamic (elastic) result based upon the changing dimensions of the content within the container.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Impressive Webs</title>
		<link>http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/#comment-653</link>
		<dc:creator>Impressive Webs</dc:creator>
		<pubDate>Tue, 18 Aug 2009 17:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=819#comment-653</guid>
		<description>@Alex:

Thanks for the heads up on that. Generally, for tutorial stuff, I don&#039;t do extensive testing in every browser. I just don&#039;t have the time for that. But I usually do a quick check in the basic 3 (IE6, IE7, FF3).

I&#039;ve corrected it, and at the same time learned an interesting way to fix IE6 absolute positioning bugs: Add &quot;clear: both&quot; to the absolutely positioned element.

Thanks again.</description>
		<content:encoded><![CDATA[<p>@Alex:</p>
<p>Thanks for the heads up on that. Generally, for tutorial stuff, I don&#8217;t do extensive testing in every browser. I just don&#8217;t have the time for that. But I usually do a quick check in the basic 3 (IE6, IE7, FF3).</p>
<p>I&#8217;ve corrected it, and at the same time learned an interesting way to fix IE6 absolute positioning bugs: Add &#8220;clear: both&#8221; to the absolutely positioned element.</p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
