<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>DigiMantra &#187; css</title>
	<atom:link href="http://www.digimantra.com/category/technology/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digimantra.com</link>
	<description>Technology tips for all</description>
	<lastBuildDate>Fri, 16 Jul 2010 06:28:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<atom:link rel='hub' href='http://www.digimantra.com/?pushpress=hub'/>
		<item>
		<title>Alternative to overflow:hidden for wrapping divs</title>
		<link>http://www.digimantra.com/technology/css/alternative-to-overflowhidden-for-wrapping-divs/</link>
		<comments>http://www.digimantra.com/technology/css/alternative-to-overflowhidden-for-wrapping-divs/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 19:24:47 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[hacks]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=2331</guid>
		<description><![CDATA[An alternate of overflow hidden in CSS


Related posts:<ol><li><a href='http://www.digimantra.com/tutorials/simple-tabs-using-javascript-and-css/' rel='bookmark' title='Permanent Link: Simple tabs using Javascript and CSS'>Simple tabs using Javascript and CSS</a></li>
<li><a href='http://www.digimantra.com/technology/difference-between-display-visibility/' rel='bookmark' title='Permanent Link: What&#8217;s difference between display: none and visibility: hidden?'>What&#8217;s difference between display: none and visibility: hidden?</a></li>
<li><a href='http://www.digimantra.com/technology/rounded-corners-with-firefox-and-safari-using-css3/' rel='bookmark' title='Permanent Link: Rounded corners in firefox and safari using css3'>Rounded corners in firefox and safari using css3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I bet, you might have struggle a lot to get this simple solution if you are here via google search. There are instances when two divs in parallel have dynamic content and it becomes difficult to keep their height equal. One of the hack is using overflow:hidden, which might not be valid in some cases and some browser might completely ignore this css style. So in this post I am going to show you how you can have two or more dynamic content changing divs of equal height in parallel.</p>
<p>I am sharing the simple HTML + CSS code with you and a live demo can be seen here <a rel="nofollow" target="_blank" href="http://digimantra.com/resources/equal_div.html" target="_blank">http://digimantra.com/resources/equal_div.html</a> .</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">&lt;style<span style="color: #00AA00;">&gt;</span>
&nbsp;
  <span style="color: #cc00cc;">#example1</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">red</span><span style="color: #00AA00;">;</span>display<span style="color: #00AA00;">:</span> knone<span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
  <span style="color: #cc00cc;">#example1</span>  <span style="color: #6666ff;">.inner1</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>width<span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">50</span>%</span><span style="color: #00AA00;">;</span>border-<span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
&nbsp;
  <span style="color: #cc00cc;">#example2</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> orange<span style="color: #00AA00;">;</span>margin-<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
  <span style="color: #cc00cc;">#example2</span>  <span style="color: #6666ff;">.inner1</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>width<span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">50</span>%</span><span style="color: #00AA00;">;</span>border-<span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
  <span style="color: #cc00cc;">#example2</span> <span style="color: #6666ff;">.clear</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">both</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>&lt;/style<span style="color: #00AA00;">&gt;</span>
&nbsp;
&lt;h2<span style="color: #00AA00;">&gt;</span>&lt;font <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;#ff8000&quot;</span><span style="color: #00AA00;">&gt;</span>Example of collapsing/wrapping divs when given floats&lt;/font<span style="color: #00AA00;">&gt;</span>&lt;/h2<span style="color: #00AA00;">&gt;</span>
&nbsp;
&lt;div id<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;example1&quot;</span><span style="color: #00AA00;">&gt;</span>
  &lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;inner1&quot;</span><span style="color: #00AA00;">&gt;</span>Lorem Ipsum is simply dummy <span style="color: #993333;">text</span> of the printing and typesetting industry. Lorem Ipsum has been the industry<span style="color: #ff0000;">'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. &lt;/div&gt;
&nbsp;
  &lt;div class=&quot;inner2&quot;&gt;
    &lt;div&gt;MY text should be here in ROW 1&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;
&nbsp;
&lt;h2 style=&quot;margin: 10px 0px; clear: both&quot;&gt;&lt;font color=&quot;#ff8000&quot;&gt;Example of using clear:both to have divs of equal height&lt;/font&gt;&lt;/h2&gt;
&nbsp;
&lt;div id=&quot;example2&quot;&gt;
  &lt;div class=&quot;inner1&quot;&gt;Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry'</span>s standard dummy <span style="color: #993333;">text</span> ever since the 1500s<span style="color: #00AA00;">,</span> when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries<span style="color: #00AA00;">,</span> but also the leap into electronic typesetting<span style="color: #00AA00;">,</span> remaining essentially unchanged. &lt;/div<span style="color: #00AA00;">&gt;</span>
&nbsp;
  &lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;inner2&quot;</span><span style="color: #00AA00;">&gt;</span>
    &lt;div<span style="color: #00AA00;">&gt;</span>MY <span style="color: #993333;">text</span> should be here in ROW <span style="color: #cc66cc;">1</span>&lt;/div<span style="color: #00AA00;">&gt;</span>
&nbsp;
    &lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;clear&quot;</span><span style="color: #00AA00;">&gt;</span>&lt;/div<span style="color: #00AA00;">&gt;</span>
  &lt;/div<span style="color: #00AA00;">&gt;</span>
&lt;/div<span style="color: #00AA00;">&gt;</span></pre></div></div>

<p>So you have to use the clear property of CSS to avoid wrapping or collapsing of the divs as show in the above example. This is very useful property and can be used on various part of a website. </p>
<p>Hope that helps. </p>
<p>Stay Digified !!<br />
  <br />Sachin Khosla</p>


<p>Related posts:<ol><li><a href='http://www.digimantra.com/tutorials/simple-tabs-using-javascript-and-css/' rel='bookmark' title='Permanent Link: Simple tabs using Javascript and CSS'>Simple tabs using Javascript and CSS</a></li>
<li><a href='http://www.digimantra.com/technology/difference-between-display-visibility/' rel='bookmark' title='Permanent Link: What&#8217;s difference between display: none and visibility: hidden?'>What&#8217;s difference between display: none and visibility: hidden?</a></li>
<li><a href='http://www.digimantra.com/technology/rounded-corners-with-firefox-and-safari-using-css3/' rel='bookmark' title='Permanent Link: Rounded corners in firefox and safari using css3'>Rounded corners in firefox and safari using css3</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/technology/css/alternative-to-overflowhidden-for-wrapping-divs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create fixed side buttons for feedback etc</title>
		<link>http://www.digimantra.com/technology/css/create-fixed-side-buttons-feedback/</link>
		<comments>http://www.digimantra.com/technology/css/create-fixed-side-buttons-feedback/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 18:25:04 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=1604</guid>
		<description><![CDATA[Know how to create fixed feedback buttons on the webpage's side


Related posts:<ol><li><a href='http://www.digimantra.com/tutorials/create-rounded-corner-buttons-in-photoshop-using-gradient/' rel='bookmark' title='Permanent Link: Create rounded corner buttons in photoshop using gradient'>Create rounded corner buttons in photoshop using gradient</a></li>
<li><a href='http://www.digimantra.com/tutorials/create-horizontal-menu-in-wordpress/' rel='bookmark' title='Permanent Link: Create Horizontal Menu in WordPress'>Create Horizontal Menu in WordPress</a></li>
<li><a href='http://www.digimantra.com/technology/css3/opacity-css3-rgba/' rel='bookmark' title='Permanent Link: Opacity in CSS3 using rgba'>Opacity in CSS3 using rgba</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Regular visitors of Digimantra might have noticed that recently we introduced &#8220;Suggest a post&#8221; button on the left side of the webpage. Some one anonymously sent a request to write a post on how to create these sort of fixed buttons on the website. This is very simple, yet look very nice tagged along the site.</p>
<p>So let us start by creating those rounded corner images. You can read this post on <a href="http://www.digimantra.com/tutorials/create-rounded-corner-buttons-in-photoshop-using-gradient/" target="_blank">how to create gradient buttons</a> ,so as to make your own in the photoshop.If you do not want to create your own image, you can use the one I created.</p>
<p><center><a href="http://www.digimantra.com/blog/wp-content/uploads/2009/08/suggest-post.png"><img class="aligncenter size-full wp-image-1605" style="border:none;" title="suggest-post" src="http://www.digimantra.com/blog/wp-content/uploads/2009/08/suggest-post.png" alt="suggest post Create fixed side buttons for feedback etc" width="78" height="168" style="border:none;" /></a></center></p>
<p>Did you notice we have this image with similar text but their background color is different. This is where we are going to use these colors for the mouseover effect. I have also given a 1px difference in the text position so as to give a little shift when mouse hovers over the button. You might have noticed that.</p>
<p>Now the HTML and CSS to achieve this is as follows  :</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">&lt;!DOCTYPE html PUBLIC <span style="color: #ff0000;">&quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;</span> <span style="color: #ff0000;">&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;</span><span style="color: #00AA00;">&gt;</span>
&lt;html<span style="color: #00AA00;">&gt;</span>
  &lt;head<span style="color: #00AA00;">&gt;</span>
    &lt;style type<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;text/css&quot;</span><span style="color: #00AA00;">&gt;</span>
      <span style="color: #00AA00;">*</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>padding<span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
      <span style="color: #cc00cc;">#suggestPost</span>
      <span style="color: #00AA00;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">background</span><span style="color: #3333ff;">:<span style="color: #993333;">transparent</span> </span>url<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">suggest-post.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #993333;">scroll</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">170px</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">fixed</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #933;">150px</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">40px</span><span style="color: #00AA00;">;</span>
      <span style="color: #00AA00;">&#125;</span>
      div<span style="color: #cc00cc;">#suggestPost</span><span style="color: #3333ff;"><span style="color: #00AA00;">:</span>hover
      </span><span style="color: #00AA00;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">background-position</span><span style="color: #00AA00;">:</span><span style="color: #933;">-41px</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
      <span style="color: #00AA00;">&#125;</span>
      <span style="color: #cc00cc;">#suggestPost</span> a
      <span style="color: #00AA00;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">170px</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">40px</span><span style="color: #00AA00;">;</span>
      <span style="color: #00AA00;">&#125;</span>
    &lt;/style<span style="color: #00AA00;">&gt;</span>
  &lt;/head<span style="color: #00AA00;">&gt;</span>
  &lt;body<span style="color: #00AA00;">&gt;</span>
    &lt;div id<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;suggestPost&quot;</span><span style="color: #00AA00;">&gt;</span>&lt;a href<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;#&quot;</span> <span style="color: #00AA00;">&gt;</span>&lt;/a<span style="color: #00AA00;">&gt;</span>&lt;/div<span style="color: #00AA00;">&gt;</span>
  &lt;/body<span style="color: #00AA00;">&gt;</span>
&lt;/html<span style="color: #00AA00;">&gt;</span></pre></div></div>

<h3>Some facts about the above lines of code</h3>
<ul>
<li>You can position this by changing the value of <strong>top:150px</strong>. This changes the position of the button from top of the browser.</li>
<li>The CSS property <strong>position:fixed</strong>; make this button sticky no matter even if the user scrolls it up or down.</li>
<li>The hover effect is the result of the  pseudo CSS property :hover which we have used in <strong>div#suggestPost:hover</strong> and we have changed the background-position of the image, which gives the effect.</li>
<li>Do not forget to add a valid DOCTYPE in the HTML file, otherwise Internet Explorer is clever enough to behave erroneous.</li>
</ul>
<p>Hope you like this post.</p>
<p>Stay Digified!!<br />
Sachin Khosla.</p>


<p>Related posts:<ol><li><a href='http://www.digimantra.com/tutorials/create-rounded-corner-buttons-in-photoshop-using-gradient/' rel='bookmark' title='Permanent Link: Create rounded corner buttons in photoshop using gradient'>Create rounded corner buttons in photoshop using gradient</a></li>
<li><a href='http://www.digimantra.com/tutorials/create-horizontal-menu-in-wordpress/' rel='bookmark' title='Permanent Link: Create Horizontal Menu in WordPress'>Create Horizontal Menu in WordPress</a></li>
<li><a href='http://www.digimantra.com/technology/css3/opacity-css3-rgba/' rel='bookmark' title='Permanent Link: Opacity in CSS3 using rgba'>Opacity in CSS3 using rgba</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/technology/css/create-fixed-side-buttons-feedback/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Rounded corners in firefox and safari using css3</title>
		<link>http://www.digimantra.com/technology/rounded-corners-with-firefox-and-safari-using-css3/</link>
		<comments>http://www.digimantra.com/technology/rounded-corners-with-firefox-and-safari-using-css3/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 20:56:15 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=1165</guid>
		<description><![CDATA[Rounded corners have always been tricky for web developers. If they do not challenge us technically, they load network as you have to download Images to create rounded corners for an element. An example of the rounded corner using an image would be Digimantra&#8217;s header (for sometime atleast it will remain).But with the invent of [...]


Related posts:<ol><li><a href='http://www.digimantra.com/technology/css3/opacity-css3-rgba/' rel='bookmark' title='Permanent Link: Opacity in CSS3 using rgba'>Opacity in CSS3 using rgba</a></li>
<li><a href='http://www.digimantra.com/tutorials/create-rounded-corner-buttons-in-photoshop-using-gradient/' rel='bookmark' title='Permanent Link: Create rounded corner buttons in photoshop using gradient'>Create rounded corner buttons in photoshop using gradient</a></li>
<li><a href='http://www.digimantra.com/firefox/install-unavailable-firefox-35-addons/' rel='bookmark' title='Permanent Link: How to Install Unavailable Firefox 3.5 Addons'>How to Install Unavailable Firefox 3.5 Addons</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Rounded corners have always been tricky for web developers. If they do not challenge us technically, they load network as you have to download Images to create rounded corners for an element. An example of the rounded corner using an image would be Digimantra&#8217;s header (for sometime atleast it will remain).But with the invent of <strong>CSS3 </strong>and browsers getting more and more powerful rounded corners are also bundled in the new webkits.</p>
<p>WordPress&#8217;s Admin Panel is one good example for the rounded corners . But you might have noticed these rounded corners disappear as soon as you open the Admin Panel in internet explorer. Apparently IE denies to support those nifty rounded corners and hence we have to write CSS in such a way so that the UI does breaks completely when page gets rendered on IE. Let me now show you an example of the rounded corner using border-radius property of CSS3.</p>
<div style="background-color:#6699CC; -moz-border-radius:15px;margin:10px;border: 1px solid #ffffff;color:#ffffff;padding: 10px;width:250px;text-align:left;" >
<h2> Should work in Mozilla firefox</h2>
</div>
<div style="background-color:#6699CC; -webkit-border-radius: 25px;margin:10px;border: 1px solid #ffffff;color:#ffffff;padding: 10px;width:250px;text-align:left;" >
<h2> Should work in chrome &#038; safari </h2>
</div>
<p>Yeah it is just few lines of code, and yet it is amazingly beautiful. You can make lot wonderful stuff with these new CSS3 tags. But one think which you to take care is about the IE &#8216;s compatibility. Here is the code, which will render the above rounded corner div. Just paste this in an html file and open it in Firefox, safari etc and it should work.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">&lt;div style<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot; background-color: #6699CC;
-moz-border-radius: 25px;
-webkit-border-radius: 25px;
border: 1px solid #fff;color:#fff;padding: 10px;width:250px;&quot;</span> <span style="color: #00AA00;">&gt;</span>
&lt;h2<span style="color: #00AA00;">&gt;</span>Hey There !! Digimantra &lt;/h2<span style="color: #00AA00;">&gt;</span>
&lt;/div<span style="color: #00AA00;">&gt;</span></pre></div></div>

<p>You can change the radius of the rounded corners as per your requirement. So this is how simpler its going to be and just cause we have IE so we have complicated things. Anyways Lets make a better web by actively contributing.</p>
<p>Stay Digified !!<br />
Sachin Khosla </p>


<p>Related posts:<ol><li><a href='http://www.digimantra.com/technology/css3/opacity-css3-rgba/' rel='bookmark' title='Permanent Link: Opacity in CSS3 using rgba'>Opacity in CSS3 using rgba</a></li>
<li><a href='http://www.digimantra.com/tutorials/create-rounded-corner-buttons-in-photoshop-using-gradient/' rel='bookmark' title='Permanent Link: Create rounded corner buttons in photoshop using gradient'>Create rounded corner buttons in photoshop using gradient</a></li>
<li><a href='http://www.digimantra.com/firefox/install-unavailable-firefox-35-addons/' rel='bookmark' title='Permanent Link: How to Install Unavailable Firefox 3.5 Addons'>How to Install Unavailable Firefox 3.5 Addons</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/technology/rounded-corners-with-firefox-and-safari-using-css3/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>What&#8217;s difference between display: none and visibility: hidden?</title>
		<link>http://www.digimantra.com/technology/difference-between-display-visibility/</link>
		<comments>http://www.digimantra.com/technology/difference-between-display-visibility/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 06:31:34 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://realin.co.in/?p=139</guid>
		<description><![CDATA[just when you tread into the world of dhtml or javascript, you can require the display property of CSS more than expected. So it becomes necessary to clearly understand some of the facts behind this powerful language. Here is the difference between the visibility and display property of an element. visibility: hidden hides the element, [...]


Related posts:<ol><li><a href='http://www.digimantra.com/tutorials/add-javascript-function-using-css-class/' rel='bookmark' title='Permanent Link: Add javascript function using css class'>Add javascript function using css class</a></li>
<li><a href='http://www.digimantra.com/tutorials/hide-show-div-elements-with-javascript/' rel='bookmark' title='Permanent Link: Hide/show div,elements with javascript'>Hide/show div,elements with javascript</a></li>
<li><a href='http://www.digimantra.com/technology/adding-a-class-to-an-element-using-javascript/' rel='bookmark' title='Permanent Link: Adding a class to an element using javascript'>Adding a class to an element using javascript</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>just when you tread into the world of dhtml or javascript, you can require the display property of CSS more than expected. So it becomes necessary to clearly understand some of the facts behind this powerful language. Here is the difference between the <strong>visibility </strong>and <strong>display </strong>property of an element.</p>
<p><strong>visibility: hidden</strong> hides the element, but it still takes up space in the layout.</p>
<p><strong>display: none</strong> removes the element completely from the document. It does not take up any space, even though the HTML for it is still in the source code.</p>
<p>cheers !!</p>
<p>Realin !</p>


<p>Related posts:<ol><li><a href='http://www.digimantra.com/tutorials/add-javascript-function-using-css-class/' rel='bookmark' title='Permanent Link: Add javascript function using css class'>Add javascript function using css class</a></li>
<li><a href='http://www.digimantra.com/tutorials/hide-show-div-elements-with-javascript/' rel='bookmark' title='Permanent Link: Hide/show div,elements with javascript'>Hide/show div,elements with javascript</a></li>
<li><a href='http://www.digimantra.com/technology/adding-a-class-to-an-element-using-javascript/' rel='bookmark' title='Permanent Link: Adding a class to an element using javascript'>Adding a class to an element using javascript</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/technology/difference-between-display-visibility/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
