<?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 Overflow Property Explained</title>
	<atom:link href="http://www.divitodesign.com/2007/12/css-how-to-use-overflow/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/</link>
	<description>Articles, Tutorials and Resources for the Webdesigner</description>
	<pubDate>Fri, 21 Nov 2008 23:08:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-beta3-9771</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: highfirefly</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-3/#comment-9647</link>
		<dc:creator>highfirefly</dc:creator>
		<pubDate>Tue, 18 Nov 2008 20:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-9647</guid>
		<description>I have tried this to create a horizontal scroll only and it worked on my mac in Safari and Firefox but I am still getting a vertical scroll on a PC laptop. Any answers?</description>
		<content:encoded><![CDATA[<p>I have tried this to create a horizontal scroll only and it worked on my mac in Safari and Firefox but I am still getting a vertical scroll on a PC laptop. Any answers?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Vervoort</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-3/#comment-5392</link>
		<dc:creator>Stefan Vervoort</dc:creator>
		<pubDate>Tue, 09 Sep 2008 16:58:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-5392</guid>
		<description>Thanks Chris for your question.

The problem you are facing is natural: your browser thinks the text without spaces is one word, and in order to fit that in your div, it automatically overflows your 'width'. 

Of course, there is a way to prevent this. You should 1) add spaces to your text, or 2) find a PHP script that breaks the lines for you automatically. Then you don't have to make the choice of where to break your text yourself: the script will do that for you. 

Anyway, I think the most simple solution is to add spaces.</description>
		<content:encoded><![CDATA[<p>Thanks Chris for your question.</p>
<p>The problem you are facing is natural: your browser thinks the text without spaces is one word, and in order to fit that in your div, it automatically overflows your &#8216;width&#8217;. </p>
<p>Of course, there is a way to prevent this. You should 1) add spaces to your text, or 2) find a PHP script that breaks the lines for you automatically. Then you don&#8217;t have to make the choice of where to break your text yourself: the script will do that for you. </p>
<p>Anyway, I think the most simple solution is to add spaces.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-3/#comment-5383</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 09 Sep 2008 15:51:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-5383</guid>
		<description>Hi Stefan, you're description of overflows is really helpful, but I am encountering just one problem in Mozilla Firefox which I can't resolve:

I'm using your CSS above with -overflow: auto-.  My problem is that the specific text I'm using contains no spaces.  What happens is that instead of the overflow working as expected, now only get one line of text truncated at the end of line.

Do you have a explanation for this and a way to prevent it from happening?  Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Stefan, you&#8217;re description of overflows is really helpful, but I am encountering just one problem in Mozilla Firefox which I can&#8217;t resolve:</p>
<p>I&#8217;m using your CSS above with -overflow: auto-.  My problem is that the specific text I&#8217;m using contains no spaces.  What happens is that instead of the overflow working as expected, now only get one line of text truncated at the end of line.</p>
<p>Do you have a explanation for this and a way to prevent it from happening?  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Vervoort</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-3/#comment-3381</link>
		<dc:creator>Stefan Vervoort</dc:creator>
		<pubDate>Sat, 26 Jul 2008 09:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-3381</guid>
		<description>@Debra - You should add a class or id to that cell. &lt;td class="scroll"&gt; and after that you should create a td.scroll class. You can style that class the way you want, so you can add the overflow property as well.</description>
		<content:encoded><![CDATA[<p>@Debra - You should add a class or id to that cell.
<td class="scroll"> and after that you should create a td.scroll class. You can style that class the way you want, so you can add the overflow property as well.</td>
]]></content:encoded>
	</item>
	<item>
		<title>By: Debra</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-3/#comment-3255</link>
		<dc:creator>Debra</dc:creator>
		<pubDate>Sat, 19 Jul 2008 19:30:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-3255</guid>
		<description>I rather new to this ... how do I specify what area I want the scrolling text to be in; i.e. a cell of a table, etc.</description>
		<content:encoded><![CDATA[<p>I rather new to this &#8230; how do I specify what area I want the scrolling text to be in; i.e. a cell of a table, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ging</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-3/#comment-2070</link>
		<dc:creator>ging</dc:creator>
		<pubDate>Tue, 10 Jun 2008 13:10:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-2070</guid>
		<description>thanks for this tip! it relieved me of an impending OCD attack, hee!</description>
		<content:encoded><![CDATA[<p>thanks for this tip! it relieved me of an impending OCD attack, hee!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Vervoort</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-3/#comment-1992</link>
		<dc:creator>Stefan Vervoort</dc:creator>
		<pubDate>Sun, 01 Jun 2008 21:13:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-1992</guid>
		<description>@Farouk - Damn Internet Explorer as always..</description>
		<content:encoded><![CDATA[<p>@Farouk - Damn Internet Explorer as always..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: June</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-2/#comment-1987</link>
		<dc:creator>June</dc:creator>
		<pubDate>Sun, 01 Jun 2008 12:28:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-1987</guid>
		<description>nice script :)</description>
		<content:encoded><![CDATA[<p>nice script <img src='http://www.divitodesign.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: farouk</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-2/#comment-1985</link>
		<dc:creator>farouk</dc:creator>
		<pubDate>Sun, 01 Jun 2008 11:26:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-1985</guid>
		<description>Ohh No. mozilla was happy about my new found knowledge but IE(of course) is still clipping the div and also inserting a vertical scroll bar even after clipping the div

my styles
#content {
  margin: 0 0 0 0px;
  width: auto;
  overflow: visible;
  height:auto;
}

body{
  padding: 0px;
  margin: 0px;
  overflow:auto;
}</description>
		<content:encoded><![CDATA[<p>Ohh No. mozilla was happy about my new found knowledge but IE(of course) is still clipping the div and also inserting a vertical scroll bar even after clipping the div</p>
<p>my styles<br />
#content {<br />
  margin: 0 0 0 0px;<br />
  width: auto;<br />
  overflow: visible;<br />
  height:auto;<br />
}</p>
<p>body{<br />
  padding: 0px;<br />
  margin: 0px;<br />
  overflow:auto;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: farouk</title>
		<link>http://www.divitodesign.com/2007/12/css-how-to-use-overflow/comment-page-2/#comment-1984</link>
		<dc:creator>farouk</dc:creator>
		<pubDate>Sun, 01 Jun 2008 11:13:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.divitodesign.com/blog/2007/12/css-how-to-use-overflow/#comment-1984</guid>
		<description>Ohh what a relief. been buttling with this overflow because both mozilla and firefox were showing only the header of the page.I was seriously fixing server-side code
Had a look at the page source and everything was there. given that am not very experienced in css, it even didnt occcur to me the whole page was been clipped.

anyway, thanx for teaching us to pay attention to the simple solutions.</description>
		<content:encoded><![CDATA[<p>Ohh what a relief. been buttling with this overflow because both mozilla and firefox were showing only the header of the page.I was seriously fixing server-side code<br />
Had a look at the page source and everything was there. given that am not very experienced in css, it even didnt occcur to me the whole page was been clipped.</p>
<p>anyway, thanx for teaching us to pay attention to the simple solutions.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
