<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2titles.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemtitles.css"?><rss 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/" version="2.0">

<channel>
	<title>discoverweb.info</title>
	
	<link>http://discoverweb.info</link>
	<description>Tracking development of Web browsers.,</description>
	<lastBuildDate>Sat, 28 Jan 2012 08:37:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Discoverweb" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="discoverweb" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">Discoverweb</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>CSS drop shadow Examples</title>
		<link>http://discoverweb.info/css-drop-shadow-examples.html</link>
		<comments>http://discoverweb.info/css-drop-shadow-examples.html#comments</comments>
		<pubDate>Wed, 27 Jul 2011 14:21:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Basic]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1625</guid>
		<description><![CDATA[Drop shadow css styling allows you to creates a drop shadow effect without using any images This will works in Firefox 3.5+ , Chrome 5+, IE 9+ , Opera 10.5+ and Safary 5+ browsers. Here we are going to see Drop shadow Effects Examples 1.How to create basic drop shadow Box .drop-shadow-example1 { -webkit-box-shadow:0 1px [...]]]></description>
			<content:encoded><![CDATA[<p>Drop shadow css styling allows you to creates a drop shadow effect without using any images</p>
<p>This will works in Firefox 3.5+ , Chrome 5+, IE 9+ , Opera 10.5+ and Safary 5+ browsers.</p>
<h2>Here we are going to see Drop shadow Effects Examples</h2>
<h3><b>1.How to create basic drop shadow Box</b></h3>
<pre>
 .drop-shadow-example1
      {
        -webkit-box-shadow:0 1px 10px #666;
        -moz-box-shadow:0 1px 10px #666;
         box-shadow:0 1px 10px #666;
      }
</pre>
<style>
 .drop-shadow-example1  {
  padding:1em;  margin:2em 10px 0em; background:#fff;
 -webkit-box-shadow:0 1px 10px #666;
 -moz-box-shadow:0 1px 10px #666;
  box-shadow:0 1px 10px #666;
        }
</style>
<div class="drop-shadow-example1">Basic Drop Shadow Example</div>
<p><br/></p>
<h3><b>2.Create drop shadow Box with inset css property</b></h3>
<pre>
 .drop-shadow-example2
      {
        -webkit-box-shadow:0 1px 10px #666 inset;
        -moz-box-shadow:0 1px 10px #666 inset;
         box-shadow:0 1px 10px #666 inset;
     }
</pre>
<style>
 .drop-shadow-example2  {
  padding:1em;  margin:2em 10px 0em; background:#fff;
  -webkit-box-shadow:0 1px 10px #666 inset;
  -moz-box-shadow:0 1px 10px #666 inset;
   box-shadow:0 1px 10px #666 inset;
        }
</style>
<p><srtong>CSS Inset Shadow Example</strong></p>
<div class="drop-shadow-example2">Drop Shadow with inset css property &#8211; This &#8220;inset&#8221; make the shadow inner side of the box</div>
<p><br/></p>
<h3><b>3.Create double color border using drop shadow method</b></h3>
<pre>
  .drop-shadow-border
     {
        border:4px solid #438ead;
        -webkit-box-shadow:0 0 0 2px #554b1c inset;
        -moz-box-shadow:0 0 0 2px #554b1c inset;
        box-shadow:0 0 0 2px #554b1c inset;
        }
</pre>
<style>
 .drop-shadow-border   {
  padding:1em;
  margin:2em 10px 0em;
  background:#fff;
  border:4px solid #438ead;
  -webkit-box-shadow:0 0 0 2px #554b1c inset;
  -moz-box-shadow:0 0 0 2px #554b1c inset;
   box-shadow:0 0 0 2px #554b1c inset;
        }
</style>
<p><srtong>CSS double color border Example</strong></p>
<div class="drop-shadow-border">CSS double color border Example &#8211; This &#8220;inset&#8221; make the in-side border for the box</div>
<p><br/></p>
<h3><b>4.css image shadow and image drop shadow</b></h3>
<pre>
 .image-shadow
      {
         padding:0.5em;  margin:2em 10px 0em; background:#fff;
        -webkit-box-shadow:0 1px 10px #666;
        -moz-box-shadow:0 1px 10px #666;
         box-shadow:0 1px 10px #666;
      }

 .image-drop-shadow
      {
        -webkit-box-shadow:0 5px 10px #666;
        -moz-box-shadow:0 5px 10px #666;
         box-shadow:0 5px 10px #666;
      }
</pre>
<style>
 .image-shadow {
 padding:0.5em;  margin:2em 10px 0em; background:#fff;
 -webkit-box-shadow:0 1px 10px #666;
 -moz-box-shadow:0 1px 10px #666;
  box-shadow:0 1px 10px #666;
        }
 .image-drop-shadow {
  margin:2em 10px 0em;
  background:#fff;
 -webkit-box-shadow:4px 6px 8px #999;
 -moz-box-shadow:4px 6px 8px #999;
  box-shadow:4px 6px 8px #999;
        }
</style>
<p><img src="http://discoverweb.info/wp-content/themes/Discoverweb/images/discover_css.gif"  class="image-shadow" style="float:left"><img src="http://discoverweb.info/wp-content/themes/Discoverweb/images/discover_css.gif"  class="image-drop-shadow" style="float:left"></p>
<div style="clear:both"></div>
<p><br/></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=lYT5zrGoNRc:yKIgiQhjqi4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=lYT5zrGoNRc:yKIgiQhjqi4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=lYT5zrGoNRc:yKIgiQhjqi4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=lYT5zrGoNRc:yKIgiQhjqi4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=lYT5zrGoNRc:yKIgiQhjqi4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=lYT5zrGoNRc:yKIgiQhjqi4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=lYT5zrGoNRc:yKIgiQhjqi4:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=lYT5zrGoNRc:yKIgiQhjqi4:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=lYT5zrGoNRc:yKIgiQhjqi4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/css-drop-shadow-examples.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Opacity/transparent Effect</title>
		<link>http://discoverweb.info/css-opacitytransparent-effect.html</link>
		<comments>http://discoverweb.info/css-opacitytransparent-effect.html#comments</comments>
		<pubDate>Fri, 17 Jun 2011 15:54:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Basic]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1704</guid>
		<description><![CDATA[Recent version&#8217;s of all browsers will support CSS opacity Effect., For lower versions of IE we have to use filter property. Example for transparent Image css &#60;style&#62; .image_transparent{ opacity:0.2; /* For IE */ filter:alpha(opacity=20); } &#60;/style&#62; &#60;body&#62; &#60;img src=&#34;../images/discover_css.gif&#34; class=&#34;image_transparent&#34;&#62; &#60;img src=&#34;../images/discover_css.gif&#34;&#62; &#60;/body&#62; .image_transparent { opacity:0.2; /* For IE */ filter:alpha(opacity=20); } Also this effect [...]]]></description>
			<content:encoded><![CDATA[<p>Recent version&#8217;s of all browsers will support CSS opacity Effect., For lower versions of IE we have to use filter property.</p>
<h2>Example for transparent Image css</h2>
<pre>
&lt;style&gt;
.image_transparent{
opacity:0.2;
/* For IE */
filter:alpha(opacity=20);
}
&lt;/style&gt;
&lt;body&gt;
&lt;img src=&quot;../images/discover_css.gif&quot; class=&quot;image_transparent&quot;&gt;
&lt;img src=&quot;../images/discover_css.gif&quot;&gt;
&lt;/body&gt;
</pre>
<style>
.image_transparent {
opacity:0.2;
/* For IE */
filter:alpha(opacity=20);
}
</style>
<div style="float:left;padding:0 5px;"><img src="http://discoverweb.info/wp-content/themes/Discoverweb/images/discover_css.gif" class="image_transparent">
</div>
<p><img src="http://discoverweb.info/wp-content/themes/Discoverweb/images/discover_css.gif" ></p>
<p>Also this effect can be applicable for <strong>transparent text</strong> and <strong> Background image transparent </strong></p>
<h2>Example for Back ground image transpatent and Text Transparent CSS</h2>
<pre>
&lt;style&gt;
.bgimage_transparent{
background-image:url(&quot;../images/discover_css.gif&quot;);
opacity:0.2;
/* For IE */
filter:alpha(opacity=20);
width:550px;
height:200px;
display:block;
}
.text_transparent {
opacity:0.4;
/* For IE */
filter:alpha(opacity=40);
}
&lt;/style&gt;
&lt;p&gt;Non Transparent Text&lt;/p&gt;
&lt;p class=&quot;text_transparent&quot;&gt;Transparent Text&lt;/p&gt;
&lt;p&gt;Transparent Background below&lt;/p&gt;
&lt;div class=&quot;bgimage_transparent&quot;&gt;&lt;/div&gt;
</pre>
<style>
.bgimage_transparent{
background-image:url("http://discoverweb.info/wp-content/themes/Discoverweb/images/discover_css.gif");
opacity:0.2;
/* For IE */
filter:alpha(opacity=20);
width:550px;
height:200px;
display:block;
}
.text_transparent {
opacity:0.4;
/* For IE */
filter:alpha(opacity=40);
}
</style>
<p>Non Transparent Text</p>
<p class="text_transparent">Transparent Text</p>
<p>Transparent Background below</p>
<div class="bgimage_transparent">
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=wqX689tL6f0:aoeFsaurDjc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=wqX689tL6f0:aoeFsaurDjc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=wqX689tL6f0:aoeFsaurDjc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=wqX689tL6f0:aoeFsaurDjc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=wqX689tL6f0:aoeFsaurDjc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=wqX689tL6f0:aoeFsaurDjc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=wqX689tL6f0:aoeFsaurDjc:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=wqX689tL6f0:aoeFsaurDjc:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=wqX689tL6f0:aoeFsaurDjc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/css-opacitytransparent-effect.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preloading Multiple Images</title>
		<link>http://discoverweb.info/preloading-multiple-images.html</link>
		<comments>http://discoverweb.info/preloading-multiple-images.html#comments</comments>
		<pubDate>Tue, 14 Jun 2011 15:16:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Tricks]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1666</guid>
		<description><![CDATA[To improve website performance we need to preloaded the images which used in hover and rollover effects Instead of using jquery or javascript to preload the images, we can do that using CSS. The following Example show you how to preload all images &#60;html&#62; &#60;title&#62; preloading Images&#60;/title&#62; &#60;style&#62; .load_images { display : none; } &#60;body&#62; [...]]]></description>
			<content:encoded><![CDATA[<h3>To improve website performance we need to preloaded the images which used in hover and rollover effects</h3>
<p>Instead of using jquery or javascript to preload the images, we can do that using CSS.</p>
<h2>The following Example show you how to preload all images </h2>
<pre>
&lt;html&gt;
&lt;title&gt; preloading Images&lt;/title&gt;
&lt;style&gt;
.load_images
 {   display : none; }
&lt;body&gt;
&lt;div class=&quot;load_images&quot;&gt;
/* You can Load Multiple no images like this */
&lt;img src=&quot;preloaded_image1.jpg&quot; /&gt;
&lt;img src=&quot;preloaded_image2.jpg&quot; /&gt;
&lt;img src=&quot;preloaded_image3.jpg&quot; /&gt;
&lt;img src=&quot;preloaded_image4.jpg&quot; /&gt;
&lt;img src=&quot;preloaded_image5.jpg&quot; /&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The &#8220;load_images&#8221; class will load and hide all images., So the roll over images will load smoothly. </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=Hes6RYUd5Wk:iy7IQg3QxO8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=Hes6RYUd5Wk:iy7IQg3QxO8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=Hes6RYUd5Wk:iy7IQg3QxO8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=Hes6RYUd5Wk:iy7IQg3QxO8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=Hes6RYUd5Wk:iy7IQg3QxO8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=Hes6RYUd5Wk:iy7IQg3QxO8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=Hes6RYUd5Wk:iy7IQg3QxO8:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=Hes6RYUd5Wk:iy7IQg3QxO8:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=Hes6RYUd5Wk:iy7IQg3QxO8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/preloading-multiple-images.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Image Preload</title>
		<link>http://discoverweb.info/css-image-preload.html</link>
		<comments>http://discoverweb.info/css-image-preload.html#comments</comments>
		<pubDate>Wed, 25 May 2011 11:07:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Tricks]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1623</guid>
		<description><![CDATA[What is the need of preload the image ? Pseudo-selectors like :hover, :focus and :active will become more widely used in website designing. One common problem is the rollover image getting downloads only when that event fire., but all the necessary images must be downloaded already, Otherwise the rollover will behave badly. So here we [...]]]></description>
			<content:encoded><![CDATA[<p>What is the need of preload the image ?</p>
<p> Pseudo-selectors like :hover, :focus and :active will become more widely used in website designing. One common problem is the rollover image getting downloads only when that event fire., but all the necessary images must be downloaded already, Otherwise the rollover will behave badly.</p>
<p> So here we are going to discuss two methods to handles rollover image loading </p>
<h2>Fast Rollovers Without Preload</h2>
<p> In this method we are going to use single background image for both rollover and non-rollover images. which means combine both images in to a single image,  and then position using the background position css property <a href="http://discoverweb.info/css-sprite-tutorial.html" target="_balnk">(CSS Sprite technique)</a>. So instead of changing the image when mouse over the element we simply change the background position to reveal the rollover image.</p>
<h2>CSS Image preloaded method</h2>
<p>Downloading the image before it is required for the rollover. This can be done by applying the image as a background to an element, and then hiding it using the background-position property. The image will then be downloaded but will not be displayed. Then, when the rollover is activated, it will operate smoothly and instantly.</p>
<p> So you need to create one class with the background image property., Use the rollover image as a background image and hide that element by using background position property as seen below.</p>
<pre>
.load_image
 {
     background-image: url(&quot;rollover-image.jpg&quot;);
     background-repeat: no-repeat;
     background-position: -1000px -1000px;
 }
</pre>
<pre>&lt;div class=&quot;load_image&quot;&gt;&lt;/div&gt;</pre>
<p>  Your rollover image will be loaded while the page was loading. When a rollover is then activated, the image will already be available to the browser and the effect will be instant.</p>
<p><a href="http://discoverweb.info/preloading-multiple-images.html" style="font-weight:bold;color:#000;"> Click here for &#8220;Multiple images preload css&#8221;</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=ZnBfegIWYPU:mt_7ueF7A0Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=ZnBfegIWYPU:mt_7ueF7A0Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=ZnBfegIWYPU:mt_7ueF7A0Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=ZnBfegIWYPU:mt_7ueF7A0Q:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=ZnBfegIWYPU:mt_7ueF7A0Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=ZnBfegIWYPU:mt_7ueF7A0Q:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=ZnBfegIWYPU:mt_7ueF7A0Q:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=ZnBfegIWYPU:mt_7ueF7A0Q:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=ZnBfegIWYPU:mt_7ueF7A0Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/css-image-preload.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE only CSS</title>
		<link>http://discoverweb.info/ie-only-css.html</link>
		<comments>http://discoverweb.info/ie-only-css.html#comments</comments>
		<pubDate>Tue, 17 May 2011 10:38:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[webkit css]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1697</guid>
		<description><![CDATA[This is the way include css styles for IE browsers &#60;!--[if IE]&#62; &#60;link rel=&#34;stylesheet&#34; href=&#34;all-ie.css&#34; type=&#34;text/css&#34;/&#62; &#60;![endif]--&#62;]]></description>
			<content:encoded><![CDATA[<p>This is the way include css styles for IE browsers</p>
<pre>
&lt;!--[if IE]&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;all-ie.css&quot; type=&quot;text/css&quot;/&gt;
&lt;![endif]--&gt;
</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=SkcuGxeRJTU:_j77s_RCqKs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=SkcuGxeRJTU:_j77s_RCqKs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=SkcuGxeRJTU:_j77s_RCqKs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=SkcuGxeRJTU:_j77s_RCqKs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=SkcuGxeRJTU:_j77s_RCqKs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=SkcuGxeRJTU:_j77s_RCqKs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=SkcuGxeRJTU:_j77s_RCqKs:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=SkcuGxeRJTU:_j77s_RCqKs:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=SkcuGxeRJTU:_j77s_RCqKs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/ie-only-css.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook like button in different languages</title>
		<link>http://discoverweb.info/facebook-like-button-in-different-languages.html</link>
		<comments>http://discoverweb.info/facebook-like-button-in-different-languages.html#comments</comments>
		<pubDate>Tue, 26 Apr 2011 15:46:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1515</guid>
		<description><![CDATA[Now You can create the Facebook like button in any language you want For Using the iframe version of the button you have to insert the code snippet &#8220;& amp;locale=en_US&#8221; (for English) somewhere after the facebook like button link, so the code would look like this: &#60;iframe src='&#38;quot;http://www.facebook.com/plugins/like.php? href&#38;quot; + data:post.url + &#38;amp;locale=en_US&#38;amp;send=false &#38;amp;layout=button_count&#38;amp;width=100&#38;amp;show_faces=true &#38;amp;action=like&#38;amp;colorscheme=light&#38;amp;font&#38;amp;height=21&#34; [...]]]></description>
			<content:encoded><![CDATA[<div style="float:right;margin-top:-25px"><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http://Discoverweb.info" send="false" layout="button_count" width="80" show_faces="true" font=""></fb:like></div>
<p><b>Now You can create the Facebook like button in any language you want</b><br />
For Using the iframe version of the button you have to insert the code snippet &#8220;& amp;locale=en_US&#8221; (for English) somewhere after the facebook like button link, so the code would look like this:</p>
<pre>
&lt;iframe
src='&amp;quot;http://www.facebook.com/plugins/like.php?
href&amp;quot; + data:post.url + &amp;amp;locale=en_US&amp;amp;send=false
&amp;amp;layout=button_count&amp;amp;width=100&amp;amp;show_faces=true
&amp;amp;action=like&amp;amp;colorscheme=light&amp;amp;font&amp;amp;height=21&quot;
scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden;
width:100px; height:21px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
</pre>
<div><br/><br />
For example Facebook like in Tamil (Language code &#8211; &#8220;ta_IN&#8221; ),  So you have to include this</p>
<pre>&amp;amp;locale=ta_IN</pre>
<p><br/><br />
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2FDiscoverweb.info&amp;locale=ta_IN&amp;send=false&amp;layout=button_count&amp;width=150&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe><br/>
</div>
<h2>Facebook like button language code</h2>
<p><span id="more-1515"></span></p>
<div class="like_language">
<style>
.like_language p{float:left;width:285px;border:1px solid #AAAAAA; background-color:#EFEFEF;text-indent:10px;}
</style>
<p><strong>Catalan</strong>= ca_ES</p>
<p><strong>Czech</strong>= cs_CZ</p>
<p><strong>Welsh</strong>= cy_GB</p>
<p><strong>Danish</strong>= da_DK</p>
<p><strong>German</strong>= de_DE</p>
<p><strong>Basque</strong>=eu_ES</p>
<p><strong>English (Pirate)</strong>=en_PI</p>
<p><strong>English (Upside Down)</strong>=en_UD</p>
<p><strong>Cherokee</strong>=ck_US</p>
<p><strong>English (US)</strong>=en_US</p>
<p><strong>Spanish</strong>=es_LA</p>
<p><strong>Spanish (Chile)</strong>=es_CL</p>
<p><strong>Spanish (Colombia)</strong>=es_CO</p>
<p><strong>Spanish (Spain)</strong>=es_ES</p>
<p><strong>Spanish (Mexico)</strong>=es_MX</p>
<p><strong>Spanish (Venezuela)</strong>=es_VE</p>
<p><strong>Finnish (test)</strong>=fb_FI</p>
<p><strong>Finnish</strong>=fi_FI</p>
<p><strong>French (France)</strong>=fr_FR</p>
<p><strong>Galician</strong>=gl_ES</p>
<p><strong>Hungarian</strong>=hu_HU</p>
<p><strong>Italian</strong>=it_IT</p>
<p><strong>Japanese</strong>=ja_JP</p>
<p><strong>Korean</strong>=ko_KR</p>
<p><strong>Norwegian (bokmal)</strong>=nb_NO</p>
<p><strong>Norwegian (nynorsk)</strong>=nn_NO</p>
<p><strong>Dutch</strong>=nl_NL</p>
<p><strong>Polish</strong>=pl_PL</p>
<p><strong>Portuguese (Brazil)</strong>=pt_BR</p>
<p><strong>Portuguese (Portugal)</strong>=pt_PT</p>
<p><strong>Romanian</strong>=ro_RO</p>
<p><strong>Russian</strong>=ru_RU</p>
<p><strong>Slovak</strong>=sk_SK</p>
<p><strong>Slovenian</strong>=sl_SI</p>
<p><strong>Swedish</strong>=sv_SE</p>
<p><strong>Thai</strong>=th_TH</p>
<p><strong>Turkish</strong>=tr_TR</p>
<p><strong>Kurdish</strong>=ku_TR</p>
<p><strong>Simplified Chinese (China)</strong>=zh_CN</p>
<p><strong>Traditional Chinese (Hong Kong)</strong>=zh_HK</p>
<p><strong>Traditional Chinese (Taiwan)</strong>=zh_TW</p>
<p><strong>Leet Speak</strong>=fb_LT</p>
<p><strong>Afrikaans</strong>=af_ZA</p>
<p><strong>Albanian</strong>=sq_AL</p>
<p><strong>Armenian</strong>=hy_AM</p>
<p><strong>Azeri</strong>=az_AZ</p>
<p><strong>Belarusian</strong>=be_BY</p>
<p><strong>Bengali</strong>=bn_IN</p>
<p><strong>Bosnian</strong>=bs_BA</p>
<p><strong>Bulgarian</strong>=bg_BG</p>
<p><strong>Croatian</strong>=hr_HR</p>
<p><strong>Dutch (België)</strong>=nl_BE</p>
<p><strong>English (UK)</strong>=en_GB</p>
<p><strong>Esperanto</strong>=eo_EO</p>
<p><strong>Estonian</strong>=et_EE</p>
<p><strong>Faroese</strong>=fo_FO</p>
<p><strong>French (Canada)</strong>=fr_CA</p>
<p><strong>Georgian</strong>=ka_GE</p>
<p><strong>Greek</strong>=el_GR</p>
<p><strong>Gujarati</strong>=gu_IN</p>
<p><strong>Hindi</strong>=hi_IN</p>
<p><strong>Icelandic</strong>=is_IS</p>
<p><strong>Indonesian</strong>=id_ID</p>
<p><strong>Irish</strong>=ga_IE</p>
<p><strong>Javanese</strong>=jv_ID</p>
<p><strong>Kannada</strong>=kn_IN</p>
<p><strong>Kazakh</strong>=kk_KZ</p>
<p><strong>Latin</strong>=la_VA</p>
<p><strong>Latvian</strong>=lv_LV</p>
<p><strong>Limburgish</strong>=li_NL</p>
<p><strong>Lithuanian</strong>=lt_LT</p>
<p><strong>Macedonian</strong>=mk_MK</p>
<p><strong>Malagasy</strong>=mg_MG</p>
<p><strong>Malay</strong>=ms_MY</p>
<p><strong>Maltese</strong>=mt_MT</p>
<p><strong>Marathi</strong>=mr_IN</p>
<p><strong>Mongolian</strong>=mn_MN</p>
<p><strong>Nepali</strong>=ne_NP</p>
<p><strong>Punjabi</strong>=pa_IN</p>
<p><strong>Romansh</strong>=rm_CH</p>
<p><strong>Sanskrit</strong>=sa_IN</p>
<p><strong>Serbian</strong>=sr_RS</p>
<p><strong>Somali</strong>=so_SO</p>
<p><strong>Swahili</strong>=sw_KE</p>
<p><strong>Filipino</strong>=tl_PH</p>
<p><strong>Tamil</strong>=ta_IN</p>
<p><strong>Tatar</strong>=tt_RU</p>
<p><strong>Telugu</strong>=te_IN</p>
<p><strong>Malayalam</strong>=ml_IN</p>
<p><strong>Ukrainian</strong>=uk_UA</p>
<p><strong>Uzbek</strong>=uz_UZ</p>
<p><strong>Vietnamese</strong>=vi_VN</p>
<p><strong>Xhosa</strong>=xh_ZA</p>
<p><strong>Zulu</strong>=zu_ZA</p>
<p><strong>Khmer</strong>=km_KH</p>
<p><strong>Tajik</strong>=tg_TJ</p>
<p><strong>Arabic</strong>=ar_AR</p>
<p><strong>Hebrew</strong>=he_IL</p>
<p><strong>Urdu</strong>=ur_PK</p>
<p><strong>Persian</strong>= fa_IR</p>
<p><strong>Syriac</strong>= sy_SY</p>
<p><strong>Yiddish</strong>= yi_DE</p>
<p><strong>Guaraní</strong>= gn_PY</p>
<p><strong>Quechua</strong>= qu_PE</p>
<p><strong>Aymara</strong>= ay_BO</p>
<p><strong>Northern Sámi</strong>= se_NO</p>
<p><strong>Pashto</strong>= ps_AF</p>
<p><strong>Klingon</strong>= tl_ST</p>
</div>
<div style="clear:both"></div>
<h3>Facebook like button language change will work for the listed langeages</h3>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=jCkuTRMcIHk:4Q6Vn5g8MSQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=jCkuTRMcIHk:4Q6Vn5g8MSQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=jCkuTRMcIHk:4Q6Vn5g8MSQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=jCkuTRMcIHk:4Q6Vn5g8MSQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=jCkuTRMcIHk:4Q6Vn5g8MSQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=jCkuTRMcIHk:4Q6Vn5g8MSQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=jCkuTRMcIHk:4Q6Vn5g8MSQ:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=jCkuTRMcIHk:4Q6Vn5g8MSQ:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=jCkuTRMcIHk:4Q6Vn5g8MSQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/facebook-like-button-in-different-languages.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text indent issues</title>
		<link>http://discoverweb.info/text-indent-issues.html</link>
		<comments>http://discoverweb.info/text-indent-issues.html#comments</comments>
		<pubDate>Wed, 20 Apr 2011 15:30:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Browser issues]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1024</guid>
		<description><![CDATA[Text indent not working in IE Text indent property which allows you the give space in the starting of the line or paragraph. When we try to hide the text we can use in the button we can us text-indent=-9999px; but this is not interpreting in IE., For example consider the following code. &#60;html&#62; &#60;head&#62; [...]]]></description>
			<content:encoded><![CDATA[<h2>Text indent not working in IE</h2>
<p> Text indent property which allows you the give space in the starting of the line or paragraph.</p>
<p>  When we try to hide the text we can use in the button we can us text-indent=-9999px; but this is not interpreting in IE., For example consider the following code.</p>
<pre>
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Test Indent Example&lt;/title&gt;
&lt;style&gt;
input.download {
	width:123px;
	height:60px;
	border: none;
	text-indent: -9999px;
	background-image: url(images/download.png);
}
&lt;/style&gt;

&lt;/head&gt;
&lt;body&gt;
&lt;input type=&quot;submit&quot; class=&quot;download&quot; value=&quot;Download&quot;&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>but it show the button like this<br />
<img src="http://discoverweb.info/wp-content/uploads/2011/04/IE7_text_indent_issue.png" alt="IE7_text_indent_issue" title="IE7_text_indent_issue" width="123" height="60" class="aligncenter size-full wp-image-1466" /><br />
To fix this issue we have to insert few lines in the css code., So the final &#8221; input.download &#8221; class as follows</p>
<pre>
input.download {
	width:123px;
	height:60px;
	border: none;
	text-indent: -9999px;
	background-image: url(images/download.png);
	display:block;
	font-size:0;
	line-height:0;
}
</pre>
<p>Do finally we got the correct result in all browsers<br />
<img src="http://discoverweb.info/wp-content/uploads/2011/04/Download.png" alt="text-indent" title="text-indent" width="123" height="60" class="aligncenter size-full wp-image-1465" /></p>
<p><i>display:block Negative text-indent works in IE7 only if this is added.<br />
font-size:0 is used to reduce the font size and works well in IE7.<br />
line-height: 0 to fix for IE6.</i></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=1RX7J8rDTIM:uii-OHxLckA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=1RX7J8rDTIM:uii-OHxLckA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=1RX7J8rDTIM:uii-OHxLckA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=1RX7J8rDTIM:uii-OHxLckA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=1RX7J8rDTIM:uii-OHxLckA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=1RX7J8rDTIM:uii-OHxLckA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=1RX7J8rDTIM:uii-OHxLckA:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=1RX7J8rDTIM:uii-OHxLckA:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=1RX7J8rDTIM:uii-OHxLckA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/text-indent-issues.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cufon-yui script for IE9</title>
		<link>http://discoverweb.info/cufon-yui-script-for-ie9.html</link>
		<comments>http://discoverweb.info/cufon-yui-script-for-ie9.html#comments</comments>
		<pubDate>Tue, 19 Apr 2011 15:25:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Browser issues]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1441</guid>
		<description><![CDATA[IE9 cufon script doesn’t render, not even the actual text. Ok try any one of the following method Method 1 Download this new cofon-yui script and use. Method 2 &#60;meta content=&#8221;IE=8&#8243; http-equiv=&#8221;X-UA-Compatible&#8221; /&#62; Method 3 &#60;!&#8211;[if gte IE 9]&#62; &#60;script type=&#8221;text/javascript&#8221;&#62; Cufon.set(&#8216;engine&#8217;, &#8216;canvas&#8217;); &#60;/script&#62; &#60;![endif]&#8211;&#62;]]></description>
			<content:encoded><![CDATA[<h2>IE9 cufon script doesn’t render, not even the actual text. Ok try any one of the following method</h2>
<p><b>Method 1</b></p>
<p><a href="http://github.com/sorccu/cufon/raw/master/js/cufon.js" target="_blank">Download</a> this new cofon-yui  script and use.</p>
<p><b>Method 2</b><br />
&lt;meta content=&#8221;IE=8&#8243; http-equiv=&#8221;X-UA-Compatible&#8221; /&gt; </p>
<p><b>Method 3</b></p>
<p>&lt;!&#8211;[if gte IE 9]&gt;     &lt;script type=&#8221;text/javascript&#8221;&gt;     Cufon.set(&#8216;engine&#8217;, &#8216;canvas&#8217;);     &lt;/script&gt; &lt;![endif]&#8211;&gt; </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=oR5mC-7Ok18:qUWGYeUueTA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=oR5mC-7Ok18:qUWGYeUueTA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=oR5mC-7Ok18:qUWGYeUueTA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=oR5mC-7Ok18:qUWGYeUueTA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=oR5mC-7Ok18:qUWGYeUueTA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=oR5mC-7Ok18:qUWGYeUueTA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=oR5mC-7Ok18:qUWGYeUueTA:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=oR5mC-7Ok18:qUWGYeUueTA:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=oR5mC-7Ok18:qUWGYeUueTA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/cufon-yui-script-for-ie9.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS text shadow</title>
		<link>http://discoverweb.info/css-text-shadow.html</link>
		<comments>http://discoverweb.info/css-text-shadow.html#comments</comments>
		<pubDate>Sat, 09 Apr 2011 18:58:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Basic]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1400</guid>
		<description><![CDATA[This css text shadow property used to create the special effect without using Photoshop tool. Most of the recent web browsers (except IE 8 and lower) will support this css style. Example for css shadow effect &#60;html&#62; &#60;style&#62; .textshadow { text-shadow: 0px 0px 8px #000; color:#ffffff; font-size:20px; } &#60;/style&#62; &#60;body&#62; &#60;div class=&#34;textshadow&#34;&#62; This Text used [...]]]></description>
			<content:encoded><![CDATA[<p>This css text shadow property used to create the special effect without using Photoshop tool. Most of the recent web browsers (except IE 8 and lower) will support this css style.</p>
<h2>Example for css shadow effect</h2>
<pre>
&lt;html&gt;
&lt;style&gt;
.textshadow
{
text-shadow: 0px 0px 8px #000;
color:#ffffff;
font-size:20px;
}
&lt;/style&gt;
&lt;body&gt;
&lt;div class=&quot;textshadow&quot;&gt; This Text used text shadow Effect&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<style>
.textshadow h3{
text-shadow: 0px 0px 8px #000;
color:#ffffff;
font-size:20px;
}
</style>
<div class="textshadow">
<h3>This Text used text shadow Effect</h3>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=o_lt1UdYnx0:A_UB879MBLE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=o_lt1UdYnx0:A_UB879MBLE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=o_lt1UdYnx0:A_UB879MBLE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=o_lt1UdYnx0:A_UB879MBLE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=o_lt1UdYnx0:A_UB879MBLE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=o_lt1UdYnx0:A_UB879MBLE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=o_lt1UdYnx0:A_UB879MBLE:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=o_lt1UdYnx0:A_UB879MBLE:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=o_lt1UdYnx0:A_UB879MBLE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/css-text-shadow.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css clear property</title>
		<link>http://discoverweb.info/css-clear-property.html</link>
		<comments>http://discoverweb.info/css-clear-property.html#comments</comments>
		<pubDate>Thu, 17 Mar 2011 12:45:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Basic]]></category>

		<guid isPermaLink="false">http://discoverweb.info/?p=1102</guid>
		<description><![CDATA[The clear property used to control the behavior of the floated elements., Normally which is used to turn off the floating sides of the element. This clear property has the values left, right, both or none. clear:both property with Examples &#60;div class=&#34;content&#34;&#62; &#60;div class=&#34;left_box&#34;&#62;Float left styled Element&#60;/div&#62; &#60;div class=&#34;right_box&#34;&#62;Float Right styled Element&#60;/div&#62; &#60;/div&#62; &#60;div class=&#34;footer&#34;&#62;Footer [...]]]></description>
			<content:encoded><![CDATA[<p>The clear property used to control the behavior of the floated elements., Normally which is used to turn off the floating sides of the element.</p>
<p><strong>This clear property has the values left, right, both or none. </strong></p>
<h2>clear:both property with Examples</h2>
<pre>
&lt;div class=&quot;content&quot;&gt;
&lt;div class=&quot;left_box&quot;&gt;Float left styled Element&lt;/div&gt;
&lt;div class=&quot;right_box&quot;&gt;Float Right styled Element&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;footer&quot;&gt;Footer Element&lt;/div&gt;
</pre>
<p><span id="more-1102"></span><br />
Without any clear style property the content box and footer box merged.</p>
<div class="content">
<div class="left_box">Float left styled Element</div>
<div class="right_box">Float Right styled Element</div>
</div>
<div class="footer">Footer Element</div>
<div class="clear"></div>
<pre>
&lt;div class=&quot;content&quot;&gt;
&lt;div class=&quot;left_box&quot;&gt;Float left styled Element&lt;/div&gt;
&lt;div class=&quot;right_box&quot;&gt;Float Right styled Element&lt;/div&gt;
&lt;div style=&quot;clear:both&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;footer&quot;&gt;Text of Footer Element&lt;/div&gt;
</pre>
<div class="content">
<div class="left_box">Float left styled Element</div>
<div class="right_box">Float Right styled Element</div>
<div style="clear:both"></div>
</div>
<div class="footer">Footer Element</div>
<div align="center">Example for clear both Property</div>
<style  type="text/css">
.content
{
      position:relative;
      margin: 0 auto;
      width:260px;
      border:1px solid #000000;
      padding:10px;  
}
.footer
{
      position:relative;
      margin: 0 auto;
      border:1px solid #FF0000;
      padding:10px;  
      width:260px
}
.left_box 
{
     float:left;
     padding:15px;
     width:100px;
     height:65px;
     background-color:#DEECF7;
}
.right_box 
{
    float:right;
    padding:15px;
    width:100px;
    height:50px;
    background-color:#FFFFB0;
}
</style>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Discoverweb?a=gbCw4RcCsGw:6kpXnP1OPTw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=gbCw4RcCsGw:6kpXnP1OPTw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=gbCw4RcCsGw:6kpXnP1OPTw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=gbCw4RcCsGw:6kpXnP1OPTw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=gbCw4RcCsGw:6kpXnP1OPTw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=gbCw4RcCsGw:6kpXnP1OPTw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=gbCw4RcCsGw:6kpXnP1OPTw:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Discoverweb?i=gbCw4RcCsGw:6kpXnP1OPTw:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Discoverweb?a=gbCw4RcCsGw:6kpXnP1OPTw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Discoverweb?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://discoverweb.info/css-clear-property.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

