<?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: Give Me a &lt;BReak</title>
	<atom:link href="http://manisheriar.com/blog/give-me-a-break/feed" rel="self" type="application/rss+xml" />
	<link>http://manisheriar.com/blog/give-me-a-break</link>
	<description>Impeccable Code &#124; Beautiful Design</description>
	<lastBuildDate>Thu, 13 May 2010 19:08:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: David Hucklesby</title>
		<link>http://manisheriar.com/blog/give-me-a-break/comment-page-1#comment-233</link>
		<dc:creator>David Hucklesby</dc:creator>
		<pubDate>Thu, 09 Feb 2006 21:26:33 +0000</pubDate>
		<guid isPermaLink="false">http://manisheriar.com/blog/give-me-a#comment-233</guid>
		<description>&lt;strong&gt;John:&lt;/strong&gt; Unless you have a particular audience in mind, I&#039;d say you have set Mani a near impossible task. In short, the web is not print. In long, consider these facts:

- Computer manufacturers can, and do, ship computers set to different dpi settings

- Computer owners can, and do, change various settings that control text size

- Not all computers have the font faces installed that the designer specifies

- Devices with small screens will probably display shorter lines than a desktop PC

- Except for the Opera browser, background images do not change size along with text size

Even if you narrowly define a computer as a PC running Windows XP, all the above variations apply. It&#039;s a bit like everyone having their own automated printer, but each printer has different font faces. Would you expect the line breaks to appear the same place everywhere?

</description>
		<content:encoded><![CDATA[<p><strong>John:</strong> Unless you have a particular audience in mind, I&#8217;d say you have set Mani a near impossible task. In short, the web is not print. In long, consider these facts:</p>
<p>- Computer manufacturers can, and do, ship computers set to different dpi settings</p>
<p>- Computer owners can, and do, change various settings that control text size</p>
<p>- Not all computers have the font faces installed that the designer specifies</p>
<p>- Devices with small screens will probably display shorter lines than a desktop PC</p>
<p>- Except for the Opera browser, background images do not change size along with text size</p>
<p>Even if you narrowly define a computer as a PC running Windows XP, all the above variations apply. It&#8217;s a bit like everyone having their own automated printer, but each printer has different font faces. Would you expect the line breaks to appear the same place everywhere?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sheriar Designs</title>
		<link>http://manisheriar.com/blog/give-me-a-break/comment-page-1#comment-232</link>
		<dc:creator>Sheriar Designs</dc:creator>
		<pubDate>Thu, 09 Feb 2006 19:49:34 +0000</pubDate>
		<guid isPermaLink="false">http://manisheriar.com/blog/give-me-a#comment-232</guid>
		<description>&lt;strong&gt;Andrew:&lt;/strong&gt; Very cool idea (even though totally beyond my simple scripting capabilities) but the tags being there, in the browser, is exactly the problem I was trying to avoid!</description>
		<content:encoded><![CDATA[<p><strong>Andrew:</strong> Very cool idea (even though totally beyond my simple scripting capabilities) but the tags being there, in the browser, is exactly the problem I was trying to avoid!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Berkowitz</title>
		<link>http://manisheriar.com/blog/give-me-a-break/comment-page-1#comment-231</link>
		<dc:creator>Andrew Berkowitz</dc:creator>
		<pubDate>Thu, 09 Feb 2006 19:44:11 +0000</pubDate>
		<guid isPermaLink="false">http://manisheriar.com/blog/give-me-a#comment-231</guid>
		<description>Just to add another layer to this, if I were doing it I would probably put the text in the physical .html file with hard returns and then as the pages were served up use a server-side script (PHP or whatever) to add in the  tags. That way you get the advantage of the semantic code but much more manageable if you want to add/change/delete text.

In other words
I would write the text
just like this
in the HTML file

But it would be magically get the  tags added when served to the browser.</description>
		<content:encoded><![CDATA[<p>Just to add another layer to this, if I were doing it I would probably put the text in the physical .html file with hard returns and then as the pages were served up use a server-side script (PHP or whatever) to add in the  tags. That way you get the advantage of the semantic code but much more manageable if you want to add/change/delete text.</p>
<p>In other words<br />
I would write the text<br />
just like this<br />
in the HTML file</p>
<p>But it would be magically get the  tags added when served to the browser.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sheriar Designs</title>
		<link>http://manisheriar.com/blog/give-me-a-break/comment-page-1#comment-230</link>
		<dc:creator>Sheriar Designs</dc:creator>
		<pubDate>Thu, 09 Feb 2006 18:36:24 +0000</pubDate>
		<guid isPermaLink="false">http://manisheriar.com/blog/give-me-a#comment-230</guid>
		<description>&lt;strong&gt;John:&lt;/strong&gt; Hehe ... it is a relatively simple thing to insert a break tag (&lt;br&gt;) to force a line break.  However, I try always to aim for writing semantic code, which means using html elements for their given purpose, not for presentation.  The breaks that you wanted were presentational only, as opposed to breaks in an address.  One reason this is not a great idea is that blind users will have each line break read out to them by their screen readers, thus breaking the flow of the sentences.

I know this probably sounds incredibly anal - but you can appreciate that, right?  ;o)

Perhaps it is a bit &quot;silly&quot; in this case, but it is part of my job and also my passion to work towards continuously improving my ability to create accessible websites and I don&#039;t like to compromise that even for something small like this.  Best practices are best practices.

As a final note, I&#039;ll add that semantic, accessible code benefits not only blind users, but also browsers without style sheets, text browsers, PDAs, search engines, etc.

(ps - fixed your name - sorry!)</description>
		<content:encoded><![CDATA[<p><strong>John:</strong> Hehe &#8230; it is a relatively simple thing to insert a break tag (&lt;br&gt;) to force a line break.  However, I try always to aim for writing semantic code, which means using html elements for their given purpose, not for presentation.  The breaks that you wanted were presentational only, as opposed to breaks in an address.  One reason this is not a great idea is that blind users will have each line break read out to them by their screen readers, thus breaking the flow of the sentences.</p>
<p>I know this probably sounds incredibly anal &#8211; but you can appreciate that, right?  ;o)</p>
<p>Perhaps it is a bit &#8220;silly&#8221; in this case, but it is part of my job and also my passion to work towards continuously improving my ability to create accessible websites and I don&#8217;t like to compromise that even for something small like this.  Best practices are best practices.</p>
<p>As a final note, I&#8217;ll add that semantic, accessible code benefits not only blind users, but also browsers without style sheets, text browsers, PDAs, search engines, etc.</p>
<p>(ps &#8211; fixed your name &#8211; sorry!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://manisheriar.com/blog/give-me-a-break/comment-page-1#comment-227</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 08 Feb 2006 22:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://manisheriar.com/blog/give-me-a#comment-227</guid>
		<description>Wow! I really am unsuited for web design. Are you telling me that breaking a line of copy is not just a matter of inserting a &quot;return&quot;? Unbelievable.

Also, as a Control Freak, I need to point out that it&#039;s &quot;Malmquist Design&quot; (not &quot;Malmquist Designs&quot;).

...can&#039;t wait.

John</description>
		<content:encoded><![CDATA[<p>Wow! I really am unsuited for web design. Are you telling me that breaking a line of copy is not just a matter of inserting a &#8220;return&#8221;? Unbelievable.</p>
<p>Also, as a Control Freak, I need to point out that it&#8217;s &#8220;Malmquist Design&#8221; (not &#8220;Malmquist Designs&#8221;).</p>
<p>&#8230;can&#8217;t wait.</p>
<p>John</p>
]]></content:encoded>
	</item>
</channel>
</rss>

