<?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/"
	>

<channel>
	<title>optimiced &#124; en &#187; CSS</title>
	<atom:link href="http://www.optimiced.com/en/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.optimiced.com/en</link>
	<description></description>
	<lastBuildDate>Wed, 14 Dec 2011 18:57:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>IE9 background shifting bug</title>
		<link>http://www.optimiced.com/en/2011/03/17/ie9-background-shifting-bug/</link>
		<comments>http://www.optimiced.com/en/2011/03/17/ie9-background-shifting-bug/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 21:22:07 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=1479</guid>
		<description><![CDATA[On Tuesday, I mentioned that the brand-new IE9 browser is out; yesterday and today, I am already fighting with the first IE9-bug I encountered&#8230; :-( The story in short: I installed IE9 mainly because I was curious to see how good is the support for some of the new CSS3 properties &#8212; rounded corners, box-shadows, [...]]]></description>
			<content:encoded><![CDATA[<p>On Tuesday, I mentioned that the brand-new <a href="http://www.optimiced.com/en/2011/03/15/ie6-ie9-10-years/">IE9 browser</a> is out; yesterday and today, I am already fighting with the first IE9-bug I encountered&#8230; :-(</p>
<p>The story in short: I installed IE9 mainly because I was curious to see how good is the support for some of the new CSS3 properties &#8212; rounded corners, box-shadows, text-shadow, gradients, transitions, and so on.</p>
<p>So, as soon as IE9 was officially released, I installed it, then restarted my Win7 machine, and lo and behold! in one of the first designs I tested in it, I found a new bug <em>(new in the sense: a bug that I never encountered in IE8 or IE7)</em>: a strange one-pixel shift in the background image of a page, when (un)certain conditions are met!</p>
<p>Here&#8217;s a test page:</p>
<p><strong><a href="http://www.optimiced.com/lab/2011/ie9-background-bug/">http://www.optimiced.com/lab/2011/ie9-background-bug/</a></strong></p>
<p>Test conditions:</p>
<p>&#8211; <a href="http://www.beautyoftheweb.com/downloadie9">Internet Explorer 9</a> (you need Windows <strong>Vista</strong> or Windows <strong>7</strong>; Windows XP is not supported).<br />
&#8211; The browser window <strong>must be maximized</strong>.<br />
&#8211; I tested with the following screen resolutions: 1680&#215;1050, 1440&#215;900. (Not sure if bug will happen if your screen is larger or smaller.)<br />
&#8211; Open <a href="http://www.optimiced.com/lab/2011/ie9-background-bug/">the test page</a>, wait for it to load.<br />
&#8211; With the mouse, <em>scroll down to the bottom of the page</em>, then <em>up to the beginning</em>. You have a 50%/50% chance to see a one-pixel shift in some part of the background of the page, in the upper part! (At least, I see such 1px shift&#8230;)<br />
&#8211; If you refresh the page, bug is gone. If you scroll again down-up once or twice, bug is back again!<br />
&#8211; (Update 1) If the <strong>Menu Bar</strong> is not open in IE9, the bug is <strong>not</strong> triggered. If the Menu Bar is open, it is triggered! (Just in case: <a rel="lightbox" href="http://www.optimiced.com/wp-uploads/2011/03/ie9-toolbars-open.png">screenshot of the toolbars</a> that are open when the bug can be reproduced: Menu bar, Status bar.)<br />
&#8211; (Update 2) If you have AERO disabled, the bug won&#8217;t show up (for example, if you use Windows Classic or Windows 7 Basic theme). If AERO is enabled (Windows 7 theme, with AERO = &#8220;ON&#8221;), the bug is there! (Big thanks to <a href="http://kissyour.net">Adam Kiss</a>, who made some tests.)<br />
&#8211; (Update 3) &#8220;<a rel="lightbox" href="http://www.optimiced.com/wp-uploads/2011/03/ie9-tabs.png">Show tabs on a separate row</a>&#8221; should not be enabled (and it&#8217;s not, by default). If you select &#8220;shows tabs on a separate row&#8221;, bug will disappear too (?).<br />
&#8211; If you put more <em>Lorem Ipsum</em> text in the main column, bug is gone.<br />
&#8211; If you reduce (or increase?) the height of the main column (<code>#content</code>) in which the Lorem Ipsum text is located, the bug no longer appears. Currently, the <code>div#content</code> has a <code>min-height</code> of 500px.<br />
&#8211; If you minimize the window of IE9 and then back again to maximized state, the bug disappears (page is re-rendered after a minimize > restore-back-to-maximized operation).<br />
&#8211; The 1px shift occurs only in the upper part of the background image, and quite randomly.</p>
<p>Now, the background image is applied to the <strong>body</strong> element:</p>
<p><code><br />
body {<br />
background: #8F8F8F url(../img/body-test.png) 0 0 repeat-x;<br />
}<br />
</code></p>
<p>&#8230;and there is nothing special in the code.</p>
<p>The left part of this <a rel="lightbox" href="http://www.optimiced.com/lab/2011/ie9-background-bug/img/body-test.png">background-image</a> is the original image, the right part is for testing purposes &#8212; the horizontal lines help see if there are any shifts in the background image position. Otherwise, that was the <a rel="lightbox" href="http://www.optimiced.com/lab/2011/ie9-background-bug/img/body-how-should-be.png">original</a>.</p>
<p>After many tries I discovered that the format of the background image does not matter (PNG, JPG, GIF&#8230;) as well as its size.</p>
<p>You can scroll with a mouse or the up-down arrows on the keyboard.</p>
<p>Of course, it&#8217;s possible that something in my setup (Win7/IE9) is wrong and so any kind of third-party confirmation for the existence (or non-existense) of this bug would be appreciated! (Btw, I never saw such a bug in IE7/8, Firefox, Opera, Safari, Chrome. Only in IE9.)</p>
<p>Here&#8217;s how the test page is supposed to look:</p>
<p><a rel="lightbox[iebug]" href="http://www.optimiced.com/wp-uploads/2011/03/ie9-bug-screen1.png" title=" IE9: normal view of the upper part of the page"><img src="http://www.optimiced.com/wp-uploads/2011/03/ie9-bug-screen1.640.png" alt="" /></a></p>
<p>And here how it looks after a couple of scrollings down/up:</p>
<p><a rel="lightbox[iebug]" href="http://www.optimiced.com/wp-uploads/2011/03/ie9-bug-screen2.png" title=" IE9: After scrolling down and then back up, here's how the upper part of the page looks like"><img src="http://www.optimiced.com/wp-uploads/2011/03/ie9-bug-screen2.640.png" alt="" /></a></p>
<p>Also please note that after scrolling down/up, and then mouse-overing the elements in the navigation, another visual strangeness happens:</p>
<p><a rel="lightbox[iebug]" href="http://www.optimiced.com/wp-uploads/2011/03/ie9-bug-screen3.png" title=" IE9: How it looks after scrolling down/up and then mouseovering elements in the nav..."><img src="http://www.optimiced.com/wp-uploads/2011/03/ie9-bug-screen3.640.png" alt="" /></a></p>
<p>So, in &#8220;ideal conditions&#8221;, the page should look <a rel="lightbox[iebug]" href="http://www.optimiced.com/wp-uploads/2011/03/ie9-how-it-should-look.png" title=" How it should look in all browsers">like this</a>, but after some scrolling, here&#8217;s how it <a rel="lightbox[iebug]" href="http://www.optimiced.com/wp-uploads/2011/03/ie9-how-it-looks-after-scrolling1.png" title=" ...And how it actually looks in IE9, after scrolling the page...">looks like</a> (or even <a rel="lightbox[iebug]" href="http://www.optimiced.com/wp-uploads/2011/03/ie9-how-it-looks-after-scrolling2.png" title=" ...or like this...">like this</a>).</p>
<p>* * * </p>
<p>Otherwise, testing IE9 is fun &#8212; for now I see that CSS3 transitions and text-shadows are not supported. Border-radius and box-shadow are supported, though, which is nice. I&#8217;ll be testing more.</p>
<p>Any help is appreciated! Did I discover a bug? If yes, what triggers it?&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2011/03/17/ie9-background-shifting-bug/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HTML5 logo in HTML5/CSS3</title>
		<link>http://www.optimiced.com/en/2011/01/27/html5-logo/</link>
		<comments>http://www.optimiced.com/en/2011/01/27/html5-logo/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 09:56:57 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=1453</guid>
		<description><![CDATA[W3C have a new logo: Eric Meyer wasn&#8217;t late to create an HTML5/CSS3 version: http://meyerweb.com/eric/html-xhtml/html5logo/ (logo will be displayed very well inside Opera, Firefox, Safari, Chrome&#8230;) Also interesting to take a look at this HTML5 logo generator, made by Daniel, with the &#60;canvas&#62; html element: http://people.opera.com/danield/html5/html5logo/ (for best design/functionality experience, open in Opera 11.) :-)]]></description>
			<content:encoded><![CDATA[<p>W3C have a new logo:</p>
<p><a href="http://www.w3.org/html/logo/" title="W3C HTML5"><img src="http://www.optimiced.com/wp-uploads/2011/01/html5-logo.png" alt="HTML5 logo" /></a></p>
<p>Eric Meyer wasn&#8217;t late to create an <a href="http://meyerweb.com/eric/thoughts/2011/01/18/css3-in-html5-html5-in-css3/">HTML5/CSS3</a> version:</p>
<p><strong><a href="http://meyerweb.com/eric/html-xhtml/html5logo/">http://meyerweb.com/eric/html-xhtml/html5logo/</a></strong><br />
<em>(logo will be displayed very well inside Opera, Firefox, Safari, Chrome&#8230;)</em></p>
<p>Also interesting to take a look at this HTML5 logo generator, made by <a href="http://people.opera.com/danield/">Daniel</a>, with the <code>&lt;canvas&gt;</code> html element:</p>
<p><strong><a href="http://people.opera.com/danield/html5/html5logo/">http://people.opera.com/danield/html5/html5logo/</a></strong><br />
<em>(for best design/functionality experience, open in <a href="http://www.opera.com/browser/" title="Get Opera 11+ browser for Win/Mac/Linux">Opera 11</a>.)</em></p>
<p>:-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2011/01/27/html5-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Target only IE8, IE7 and IE6 in the CSS code</title>
		<link>http://www.optimiced.com/en/2010/11/05/target-ie8-ie7-ie6-in-css/</link>
		<comments>http://www.optimiced.com/en/2010/11/05/target-ie8-ie7-ie6-in-css/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 15:16:26 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=1327</guid>
		<description><![CDATA[It&#8217;s not a very good idea to &#8220;hack&#8221; the CSS code in such a way so that certain rules will be seen by specific browsers only &#8212; usually, one or more than one version of Internet Explorer (IE Conditional Comments are a much better option, in most of the cases). But sometimes this is the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not a very good idea to &#8220;hack&#8221; the CSS code in such a way so that certain rules will be seen by specific browsers only &#8212; usually, one or more than one version of Internet Explorer (<a href="http://www.quirksmode.org/css/condcom.html">IE Conditional Comments</a> are a much better option, in most of the cases).</p>
<p>But sometimes this is the easiest (or the only) way to deal with the situation &#8212; let&#8217;s suppose, for example, that you don&#8217;t have access to the HTML but to the CSS files only. In this case, the following 4 lines of code might be useful:</p>
<p><code><br />
body {<br />
 color: red; /* all browsers will see this */<br />
 color : green\9; /* IE8 and below */<br />
 *color : yellow; /* IE7 and below */<br />
 _color : orange; /* IE6 */<br />
}<br />
</code></p>
<p>As you can see, it&#8217;s easy to write rules that will be &#8220;seen&#8221; only by IE8, IE7 or IE6, or a combination of these three IE versions. And let&#8217;s hope IE9 will need no hacks! ;)</p>
<p><em>(via <a href="http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-how-to-target-ie6-ie7-and-ie8-uniquely-with-4-characters/">#</a>)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2010/11/05/target-ie8-ie7-ie6-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The smell of HTML and CSS in the morning&#8230;</title>
		<link>http://www.optimiced.com/en/2009/11/21/the-smell-of-html-css/</link>
		<comments>http://www.optimiced.com/en/2009/11/21/the-smell-of-html-css/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 12:07:15 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Fireworks]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=717</guid>
		<description><![CDATA[A few days ago, Jeffrey Zeldman said: I love the smell of HTML in the morning. To which I replied: @zeldman I bet it smells like a good cup of coffee! ;-) And Jeffrey replied: @optimiced How right you are. This inspired me to quickly create the following illustration in Fireworks: (NOTE: Coffee cup is [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago, Jeffrey Zeldman said: <a href="http://twitter.com/zeldman/status/5417692627">I love the smell of HTML in the morning</a>.</p>
<p>To which I replied: <a href="http://twitter.com/optimiced/status/5417961656">@zeldman I bet it smells like a good cup of coffee! ;-)</a></p>
<p>And Jeffrey replied: <a href="http://twitter.com/optimiced/status/5417961656">@optimiced How right you are.</a></p>
<p>This inspired me to quickly create the following illustration in <a href="http://www.adobe.com/products/fireworks/" title="The best graphics editor for Web &#038; screen! Adobe Fireworks!">Fireworks</a>:</p>
<p><a rel="lightbox" href="http://www.optimiced.com/wp-uploads/2009/11/coffee-html-css-v03.png" title="The smell of HTML (and CSS) in the morning"><img src="http://www.optimiced.com/wp-uploads/2009/11/coffee-html-css-v03.png" alt="The smell of HTML (and CSS) in the morning" /></a></p>
<p><em>(NOTE: Coffee cup is re-created from scratch in Fireworks, although it looks like <a href="http://theoatmeal.com/comics/caffeine">this illustration</a>. The final appearance of my little drawing was also inspired by <a href="http://twitter.com/molif">@molif</a>, for which I&#8217;d like to thank her!:-)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2009/11/21/the-smell-of-html-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A better, more accessible CSS way to hide outline from links</title>
		<link>http://www.optimiced.com/en/2009/10/23/a-more-accessible-css-way-to-hide-outline-from-links/</link>
		<comments>http://www.optimiced.com/en/2009/10/23/a-more-accessible-css-way-to-hide-outline-from-links/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 12:37:24 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=627</guid>
		<description><![CDATA[When starting a new project, I do not use global CSS resets &#8212; like Eric Meyer&#8217;s excellent CSS reset. That&#8217;s why, I rarely have problems with removed outlines from links. As you probably know, users which do not use a mouse but navigate webpages with keyboard only, need to see outlines on links when they [...]]]></description>
			<content:encoded><![CDATA[<p>When starting a new project, I do not use global CSS resets &#8212; like Eric Meyer&#8217;s <a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/">excellent CSS reset</a>. That&#8217;s why, I rarely have problems with removed outlines from links.</p>
<p>As you probably know, users which do not use a mouse but navigate webpages with keyboard only, need to see outlines on links when they tab through them. This helps them visually understand which link they will activate.</p>
<p>A fairly new trend is to remove (suppress) this dotted outline on links to make pages look &#8220;nicer&#8221; to the eye. While design may look &#8220;nicer&#8221; and more &#8220;Web 2.0&#8243; to some, when this outline is removed, the accessibility aspect of this remains, and it is very serious.</p>
<p>But <a href="http://www.456bereastreet.com/archive/200910/remove_the_outline_from_links_on_active_only/">Roger Johansson suggested</a> a much better approach: remove links from :active state only!</p>
<p>This is the article that he recommends to all Web developers:</p>
<p><strong><a href="http://people.opera.com/patrickl/experiments/keyboard/test">Better CSS outline suppression</a></strong></p>
<p>Basically, what happens:</p>
<p>You remove the dotted outline from links which are only clicked with the mouse, while keyboard users will see the outline normally!</p>
<p>How? Just use this bit of code, and that&#8217;s it:</p>
<p><code>a:active {outline:none;}</code></p>
<p>Excellent tip!</p>
<p>I promise to myself that if I will ever try to remove the outline from links, I will do it in this, much more accessible way! :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2009/10/23/a-more-accessible-css-way-to-hide-outline-from-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anonymous Pro &#8211; an interesting font for coders</title>
		<link>http://www.optimiced.com/en/2009/09/28/anonymous-pro-monospaced-font/</link>
		<comments>http://www.optimiced.com/en/2009/09/28/anonymous-pro-monospaced-font/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 15:01:05 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=611</guid>
		<description><![CDATA[If you write code (HTML, XHTML, CSS, JS, PHP, etc.), then the Anonymous Pro monospaced font may be of some interest to you. It&#8217;s intended for coders and developers/designers (the 0, of course, is crossed;-) and it includes Cyrillic characters. You can download it for free from here: www.ms-studio.com/FontSales/anonymouspro.html But my personal preference for a [...]]]></description>
			<content:encoded><![CDATA[<p>If you write code (HTML, XHTML, CSS, JS, PHP, etc.), then the <em>Anonymous Pro</em> monospaced font may be of some interest to you. It&#8217;s intended for coders and developers/designers (the <del>0</del>, of course, is crossed;-) and it includes Cyrillic characters.</p>
<p><a rel="lightbox" href="http://www.optimiced.com/wp-uploads/2009/09/anonymous-pro-font.png" title="Anonymous Pro"><img src="http://www.optimiced.com/wp-uploads/2009/09/anonymous-pro-font.640.png" alt="Anonymous Pro font" /></a></p>
<p>You can download it for free from here:</p>
<p><a href="http://www.ms-studio.com/FontSales/anonymouspro.html"><strong>www.ms-studio.com/FontSales/anonymouspro.html</strong></a></p>
<p>But my personal preference for a <em>monospaced</em> font is <a href="http://www.google.com/search?hl=en&#038;q=consolas+font&#038;aq=0&#038;oq=consolas+&#038;aqi=g10">Consolas</a>. As far as I know, this new font by Microsoft can be downloaded for free, too; Consolas is readable and suitable for all kinds of code &#8212; in my case, I most often see XHTML and CSS code blocks in it:)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2009/09/28/anonymous-pro-monospaced-font/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Jeffrey Zeldman is now following you on Twitter&#8221;</title>
		<link>http://www.optimiced.com/en/2009/09/28/zeldman-is-following-you-on-twitter/</link>
		<comments>http://www.optimiced.com/en/2009/09/28/zeldman-is-following-you-on-twitter/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 12:32:11 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=588</guid>
		<description><![CDATA[&#8230;or how Twitter can be actually of some use;-) { Some drafts in my blog were hidden really deep, so&#8230; ;-) } { This story developed somewhere in July 2009&#8230; } Twitter is an amazing&#8230; media? Social network? Means for ultra-fast transfer of news, wisdom, stupid things and &#8220;important&#8221; things like &#8220;I am drinking coffee [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;or how Twitter can be actually of some use;-)</p>
<p>{ Some drafts in my blog were hidden really deep, so&#8230; ;-) }</p>
<p>{ This story developed somewhere in July 2009&#8230; }</p>
<p><a href="http://twitter.com">Twitter</a> is an amazing&#8230; media? Social network? Means for ultra-fast transfer of news, wisdom, stupid things and &#8220;important&#8221; things like <em>&#8220;I am drinking coffee now&#8221;</em>? Something like IRC, but with an option for SMS, filtering, search, etc.?</p>
<p>Twitter is all of this simultaneously! :-)</p>
<p><a href="http://www.zeldman.com" title="Jeffrey Zeldman's hat :)" class="imagelink"><img src="http://www.optimiced.com/wp-uploads/2009/09/jeffrey-zeldman-hat.gif" alt="Jeffrey Zeldman's hat" /></a>&#8230;I am a Web designer and (partially) a <em>geek</em>, so it was very interesting for me to follow the discussion in two of the latest publications of Jeffrey Zeldman:</p>
<p><a href="http://www.zeldman.com/2009/07/02/xhtml-wtf/">www.zeldman.com/2009/07/02/xhtml-wtf/</a><br />
<a href="http://www.zeldman.com/2009/07/07/in-defense-of-web-developers/">www.zeldman.com/2009/07/07/in-defense-of-web-developers/</a></p>
<p>&#8230;where the consequences of discontinuing the work on the <a href="http://www.w3.org/News/2009#item119">XHTML 2 standard</a>, and what will happen with XHTML 1.0, HTML 4.01, as well as with the new HTML 5, were passionately discussed.</p>
<p>At some point, in the Zeldman&#8217;s website, a strange bug appeared (in Firefox 3/Win): somewhere around 3/4 of the page with his last post and the numerous comments below, the content suddenly was disappearing (<a rel="lightbox" href="http://www.optimiced.com/web/2009/zeldman/zeldman-screen.jpg">screenshot</a>). Without a reason. The page itself was validating perfectly and there were no problems with the encoding or the HTML/CSS code.</p>
<p>Jeffrey noticed the problem, too, and was trying to solve it for quite a <a href="http://twitter.com/zeldman/status/2499281164">long time</a>. The assumption that <a href="http://twitter.com/zeldman/status/2504011341">a problematic pingback</a> with UTF-16 encoding was the culprit, was not confirmed.</p>
<p>I tried to investigate, too, out of curiosity, without any positive results, though.</p>
<p>Finally, I assumed that there&#8217;s a CSS bug in the rendering engine of Firefox/Win which (maybe) can be fixed with some new CSS rule. One of the readers of Zeldman&#8217;s blog mentioned that he tried to check something with <a href="http://getfirebug.com/">Firebug</a>, so I quickly made a test page + CSS file with the rule which (supposedly) was fixing this issue; then I tested in Firefox 3.0.11/WinXP. The problem was gone! :-)</p>
<p>Only one line fixed the problem for Firefox:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">div#wrapper {
overflow: visible;
}</pre></div></div>

<p>Then I&#8217;ve spent some more time to test in detail if the change did not affect any other popular browser (Opera 9.6, Safari 4, Chrome 2, IE7, IE6) and finally, I <a href="http://twitter.com/optimiced/status/2531532128">wrote</a> to Zeldman, proposing him the fix for Firefox.</p>
<p>Zeldman <a href="http://twitter.com/zeldman/status/2531760143">replied</a>:</p>
<blockquote><p>@optimiced Will try as soon as I&#8217;m back on my feet. Thanks wise one.</p></blockquote>
<p>Soon after that, Zeldman implemented the fix, and the design was fixed! :-)</p>
<p>Unfortunately, the fix <a href="http://www.zeldman.com/2009/07/08/firefox-forces-red-background-flash/">introduced a new bug</a> &#8212; the background of the page was &#8220;flashing&#8221; for a second or two on each page load because <code>overflow: visible</code> caused the background of the element <code>#wrapper</code> to load with a little delay (before: <code>overflow: auto</code>).</p>
<p>Well, after some more thought invested, I and another reader suggested two additional simple CSS solutions, which at a later stage proved to play very well together and fixed the &#8220;flashing problem&#8221; in all browsers &#8212; Firefox and Safari included! :-)</p>
<p>Last (but not least), I would like to say that Jeffrey Zeldman is a cool dude! After the whole story with the CSS bugs in Firefox and the red background flash was over, Jeffrey thanked me personally and added me to his <a rel="lightbox" href="http://www.optimiced.com/wp-uploads/2009/07/twitter-zeldman.jpg" title="Jeffrey Zeldman is now following you on Twitter">Twitter list</a>, and then promised to send me the new (third) edition of his <a href="http://www.zeldman.com/2009/06/18/beep/" title="Designing with Web Standards: Third Edition">popular book about Web Standards</a>, as a present! <em>(I think that somewhere in the <a href="http://www.zeldman.com/wp-content/themes/zeldman-v2/style.css">CSS</a> on zeldman.com there are some more acknowledgments hidden;-)</em> </p>
<p>It&#8217;s always nice to communicate with such people, even if with messages only 140 characters long! ;-)</p>
<p>So, I am pleased to say, too: &#8220;Jeffrey, thank you!&#8221; :-)</p>
<p>* * *</p>
<p>Ah, and finally, why did I start this blog post with the question, what exactly is Twitter?</p>
<p>Because, after using Twitter for at least a few years, I can say that Twitter allows quick, precise communication in a new way. Comments in blogs, feedback forms, emails, allow us to communicate, too, but Twitter is something different. Something, which I cannot define precisely, but something, which fulfills its purpose and is also fun!</p>
<p>This is why you can (still) find me on Twitter (but you won&#8217;t probably find me on Facebook)&#8230; and, you can find me on my <a href="http://www.optimiced.com/en/">personal blog</a>, of course! ;-p</p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2009/09/28/zeldman-is-following-you-on-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XHTML 1.0 vs. HTML 4.01 (or HTML 5)?</title>
		<link>http://www.optimiced.com/en/2009/05/15/xhtml1-html4-html5/</link>
		<comments>http://www.optimiced.com/en/2009/05/15/xhtml1-html4-html5/#comments</comments>
		<pubDate>Fri, 15 May 2009 13:35:58 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=320</guid>
		<description><![CDATA[If you are a professional Web designer and create HTML/CSS code by hand for living, then you might be interested in the fact that Dave Shea switched from XHTML 1.0 to HTML 4.01. It&#8217;s a fact that: 1) Lately, the HTML 5 standard gains up in speed. 2) XHTML 2.0 probably will never become a [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a professional Web designer and create HTML/CSS code by hand for living, then you might be interested in the fact that Dave Shea switched <strong><a href="http://mezzoblue.com/archives/2009/04/20/switched/">from XHTML 1.0 to HTML 4.01</a></strong>.</p>
<p>It&#8217;s a fact that:</p>
<p>1) Lately, the <a href="http://dev.w3.org/html5/spec/Overview.html">HTML 5 standard</a> gains up in speed.</p>
<p>2) XHTML 2.0 probably will never become a successor to XHTML 1.0. In fact, XHTML 2.0 probably will never exist <em>at all</em>.</p>
<p>3) Quite a few prominent Web designers and CSS/HTML coders are abandoning XHTML 1.0 and go back to HTML 4.01 <em>(some of them even <a href="http://adactio.com/journal/1540">experiment</a> very seriously with HTML 5)</em>.</p>
<p>What HTML standard for documents do <em>you</em> prefer? And am I the only one who (still) prefers XHTML 1.0 over HTML 4.01? :-)</p>
<p>It followed the interesting discussion at <strong><a href="http://mezzoblue.com/archives/2009/04/20/switched/">mezzoblue</a></strong> &#8212; I managed to read almost all of the comments there!</p>
<p>But, sometimes, it is not very clear to me as to where &#038; why are going the Web Standards, guided by <a href="http://www.w3.org/">W3C</a>.</p>
<p>After <strong>HTML 3.2</strong>, <strong>HTML 4.01</strong> came, then the <strong>XHTML 1.0</strong> standard was adopted, and now <strong>HTML 5</strong> is developed? There&#8217;s almost no logic behind the versioning; plus, we have first the HTML language (which, in turn, derived from <a href="http://en.wikipedia.org/wiki/SGML">SGML</a>), then W3C decided that it would be a great idea to combine XML + HTML (and so, XHTML 1.0 was &#8216;born&#8217;), and finally, they turn back to the idea of &#8216;pure&#8217; HTML, and in the new standard <em>(HTML 5)</em>, the &#8216;X&#8217; is missing&#8230;</p>
<p><span id="more-320"></span></p>
<p>What&#8217;s up next? I don&#8217;t know.</p>
<p>Personally, I am a bit puzzled by the fact that the first standards, which I&#8217;ve learned, when I started doing Web design, were HTML 3.2 and HTML 4.01, then came XHTML 1.0 (&#8220;The Next Best Thing Since Sliced Bread&#8221;, after HTML 4.01) &#8212; at this time I had to learn how to close tags, which you don&#8217;t have to close at all (such as <code>img</code> and <code>br</code>, for example)&#8230; And now, after XHTML 1.0, it&#8217;s HTML&#8217;s turn again?</p>
<p>For now, I don&#8217;t plan to change my coding style. XHTML 1.0 Transitional &#038; Strict are doing a great job.</p>
<p>Besides, using HTML 4.01 has certain drawbacks (compared to XHTML 1.0):</p>
<p>For example, under HTML 4.01, the closing of some tags is not obligatory at all &#8212; <code>&lt;p&gt;, &lt;li&gt;</code> can be opened, but you don&#8217;t have to close them after that, so the following two examples are both valid:</p>
<p><em>example 1:</em></p>
<pre><code>&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Lorem&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Ipsum&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Dolor Sit&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Lorem ipsum...&lt;/p&gt;

&lt;p&gt;Lorem ipsum!&lt;/p&gt;</code></pre>
<p><em>example 2:</em></p>
<pre><code>&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Lorem&lt;/a&gt;
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Ipsum&lt;/a&gt;
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Dolor Sit&lt;/a&gt;
&lt;/ul&gt;

&lt;p&gt;Lorem ipsum...

&lt;p&gt;Lorem ipsum!</code></pre>
<p>This could lead to the situation, when the following example will be perfectly valid for the <a href="http://validator.w3.org">W3C validator</a>:</p>
<p><em>example 3:</em></p>
<pre><code>&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Lorem&lt;/a&gt;
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Ipsum&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Dolor Sit&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Lorem ipsum...

&lt;p&gt;Lorem ipsum!&lt;/p&gt;</code></pre>
<p>&#8230;but it will not look very well as code.</p>
<p>Under XHTML 1.0, there is no such problem. Only <em>example 1</em> will be valid, when all opened tags are correctly closed. Such code is easier to be checked for any accidental mistakes, and it can be also read much easier by a machine.</p>
<p>Also, you don&#8217;t have to use quotes for HTML attributes under HTML 4.01.</p>
<p><em>example 4:</em></p>
<pre><code>&lt;div class=container&gt;
  &lt;p&gt;Lorem Ipsum...&lt;/p&gt;
  &lt;p class=&quot;blue&quot;&gt;Dolor sit...&lt;/p&gt;
&lt;/div&gt;</code></pre>
<p>Code like this will be valid for HTML 4.01, but not for XHTML 1.0. Under XHTML 1.0 only the following example will validate (when attributes are quoted):</p>
<p><em>example 5:</em></p>
<pre><code>&lt;div class=&quot;container&quot;&gt;
  &lt;p&gt;Lorem Ipsum...&lt;/p&gt;
  &lt;p class=&quot;blue&quot;&gt;Dolor sit...&lt;/p&gt;
&lt;/div&gt;</code></pre>
<p>There are some more differences with HTML 4.01. Special characters like &#8216;<strong>&#038;</strong>&#8216;, &quot; (quotes), etc., are not necessarily encoded (under XHTML 1.0, the ampersand sign (&#038;) should be encoded as <code>&amp;amp;</code>, for example).</p>
<p>Let&#8217;s not forget also that most of today&#8217;s CMS systems are programmed with XHTML 1.0 in mind (and not HTML 4.01), and if you use HTML in such a situation, it&#8217;s possible that you&#8217;ll end up with some &#8216;code mix&#8217; &#8212; HTML &#038; XHTML together in one page; in such a case, you&#8217;ll have to modify the way in which the particular CMS is working, or the code won&#8217;t validate at all&#8230;</p>
<p>* * *</p>
<p>If you are a good designer, you won&#8217;t have any problems using both HTML 4.01 and XHTML 1.0, without any noticeable difference. But even if you have a lot of experience in this area, using HTML 4 might hide certain caveats &#8212; it is much easier to allow certain types of mistakes, which <a href="http://validator.w3.org">the validator</a> won&#8217;t find at all <em>(such as opened, but not correctly closed tags, etc.)</em>. From there to ending up with some kind of a <a href="http://en.wikipedia.org/wiki/Tag_soup">tag soup</a>, is just one small tiny step&#8230; On the other hand, XHTML 1.0 is much more strict in this aspect, and will learn you easier how to write well-formed (and well formatted) code.</p>
<p>I am observing with much interest the development of HTML and CSS, but for now I did not hear any strong arguments so that XHTML 1.0 to be abandoned (in favour of HTML 4.01, for example). As to HTML 5, for now it is only a working draft, and it has a long road to go, before it becomes a mature and well-supported standard&#8230;</p>
<p>I prefer to use some new features, present in CSS3, which modern browers already support (like <a href="http://www.google.com/search?hl=en&#038;ei=iTMNSuKGJpTEsAaEutT-CA&#038;sa=X&#038;oi=spell&#038;resnum=0&#038;ct=result&#038;cd=1&#038;q=css3+rounded+corners&#038;spell=1">CSS rounded corners</a> &#8212; Firefox and Safari have perfect support for them), than trying to start coding again in HTML style, without the &#8216;X&#8217;:-)</p>
<p>I might be wrong, but I prefer the stricter way of coding, which XHTML 1.0 imposes&#8230; Just a simple habit?</p>
<p>May be! :-)</p>
<p><script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2009/05/15/xhtml1-html4-html5/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>The end of IE6 is soon?</title>
		<link>http://www.optimiced.com/en/2009/02/22/the-end-of-ie6/</link>
		<comments>http://www.optimiced.com/en/2009/02/22/the-end-of-ie6/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 15:34:37 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=197</guid>
		<description><![CDATA[In the light of recent ideas that Web designers should spend less and less time, making fixes for Internet Explorer 6 (this browser is almost 10 years old already), I was curious to compare some browser stats for optimiced.com. But first, a couple of words about the reasons why support for IE6 should be limited. [...]]]></description>
			<content:encoded><![CDATA[<p>In the light of recent ideas that Web designers should spend less and less time, making fixes for Internet Explorer 6 (this browser is almost 10 years old already), I was curious to compare some browser stats for <a href="http://www.optimiced.com">optimiced.com</a>.</p>
<p>But first, a couple of words about the reasons why support for IE6 should be limited.</p>
<h3>The Reasons</h3>
<p><strong>Dan Cederholm</strong>: <a href="http://www.simplebits.com/notebook/2009/02/13/iegone.html">How I Might Deal with IE6</a></p>
<p><strong>Roger Johannson</strong>: <a href="http://www.456bereastreet.com/archive/200902/no_more_pixel_perfectionism_in_ie_6/">No more pixel perfectionism in IE 6</a></p>
<p>Basically, the idea is as follows: Limit the time, which you dedicate to IE6, to the possible minimum. Yes, the design will look a bit different in this old browser, but so what? The important thing is that the design should work, and that there are no problems with the accessibility or functionality of the website.</p>
<p>In certain cases, you can even decide, if you wish to ensure a minimum support for IE6, or completely ignore it, in a similar way that Netscape 4.7x was ignored years ago, using the <code>@import</code> command for CSS styles.</p>
<p>For IE6, you can use IE conditional comments, like in this example:</p>
<pre><code>
&lt;!--[if gte IE 7]&gt;&lt;!--&gt;
&#160;&#160;&lt;link rel="stylesheet" type="text/css" media="screen, projection" href="screen.css" /&gt;
&lt;!--&lt;![endif]--&gt;
</code></pre>
<p>&#8220;Translated&#8221; to human language, this small piece of HTML code means the following:</p>
<p>If Internet Explorer is version <strong>7</strong> (or higher), the CSS file &#8216;screen.css&#8217; will be loaded. Otherwise, the file won&#8217;t be loaded (IE6 or lower). All other browsers (Firefox, Opera, Safari, etc.) will load the file <code>screen.css</code> quite normally. I have tested this in Firefox 3, Safari 3.2, IE7, IE6, and the code works perfectly.</p>
<blockquote><p><strong><a href="http://www.optimiced.com/lab/2009/ie6-css-filtering/">Here&#8217;s the test example</a></strong></p></blockquote>
<p>Open this page in Firefox, Opera, Safari or IE7+ &#8212; the background of the page should be green, and it means that the &#8216;screen.css&#8217; file is loading normally.</p>
<p>Open the same page in IE6 (or even older version) &#8212; the background should be white, and it means, &#8216;screen.css&#8217; is not loading for it.</p>
<p>And now about my browser stats.</p>
<p>I decided to check, how many site visitors of my personal blog are using Internet Explorer, how many of them are using version 6, and also, how stand up the numbers for Firefox and a few other popular browsers of today.</p>
<h3>The Numbers</h3>
<p>As a base for my comparison, I took the last month (Jan. 22 &#8212; Feb. 22 2009), and I also compared this period with the same period, but 1 years ago (Jan. 22 &#8212; Feb. 22 2008).</p>
<p>Firefox (Jan. 22, 2009 &#8212; Feb. 22, 2009): <em>56.18%</em> of all visits<br />
Firefox (Jan. 22, 2008 &#8212; Feb. 22, 2008): 	<em>49.79%</em> of all visits<br />
<strong>Firefox: +6.39%</strong> increase in number of visits, during a period of 1 year</p>
<p>Internet Explorer (Jan. 22, 2009 &#8212; Feb. 22, 2009): <strong>33.47%</strong> of all visits<br />
Internet Explorer (Jan. 22, 2008 &#8212; Feb. 22, 2008): <em>40.90%</em> of all visits<br />
<strong>Internet Explorer: -7.43%</strong> decrease in number of visits, during a period of 1 year</p>
<p>At the present moment, Opera is around 5%, Chrome is around 3.2% and Safari around 1.5% (of all visits to my site). All other browsers (Mozilla, for example) have so low numbers, that they can safely be ignored.</p>
<p>The tendency is clear. Firefox slowly, but constantly is increasing its influence, while Internet Explorer makes exactly the opposite. Safari, Opera, and also Chrome, are present in the whole picture, but quite modestly. Firefox and IE are the &#8220;big players&#8221;, or at least, this is true for my blog visitors&#8230; :)</p>
<p>Now let&#8217;s see the numbers for the different versions of IE.</p>
<h3>IE7/IE8 vs. IE6</h3>
<p>IE7 (Jan. 22, 2009 &#8212; Feb. 22, 2009): <em>55.22%</em> from the total share of IE in the stats<br />
IE7 (Jan. 22, 2008 &#8212; Feb. 22, 2008): <em>41.59%</em> from the total share of IE in the stats<br />
<strong>IE7: +13.63%</strong> increase in number of visits during a period of 1 year</p>
<p>IE6 (Jan. 22, 2009 &#8212; Feb. 22, 2009): <em>43.64%</em> from the total share of IE in the stats<br />
IE6 (Jan. 22, 2008 &#8212; Feb. 22, 2008): <em>57.18%</em> from the total share of IE in the stats<br />
<strong>IE6: -13.54%</strong> decrease in number of visits during a period of 1 year</p>
<p>The trend here is also clear: IE6 slowly loses grounds, while IE7 is becoming more and more widespread.</p>
<p>IE8 Beta also appears in the stats, but the numbers are very low &#8212; around 1%.</p>
<h3>The Verdict</h3>
<p><strong>Firefox</strong>: <strong>56.18</strong>% from all visits to the website<br />
<strong>Internet Explorer</strong>: <strong>33.47</strong>% from all visits to the website<br />
&#8212; IE7: <em>~ 55%</em> (of all IE visits)<br />
&#8212; IE6: <em>~ 43%</em> (of all IE visits)</p>
<p>In total, my users, which are using IE6, are less than 15%. All others use Firefox, IE7, Safari, Opera and Chrome.</p>
<p>Is 15% too low a number, so I can apply the CSS &#8220;filtering&#8221; for IE6? No, it is too early for that, I think.</p>
<p>But I guess that in 1-2 years the share of IE6 will become so low, that there really won&#8217;t be any point in trying to fix the XHTML/CSS code for it.</p>
<p>And then IE6 will become history, in a much similar way that Netscape Navigator 4.7x became history a few years ago &#8212; something which made me very happy at the time! :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2009/02/22/the-end-of-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Most popular fonts on Windows, MacOS and Linux</title>
		<link>http://www.optimiced.com/en/2009/02/15/most-widespread-fonts-on-windows-mac-linux/</link>
		<comments>http://www.optimiced.com/en/2009/02/15/most-widespread-fonts-on-windows-mac-linux/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 15:21:32 +0000</pubDate>
		<dc:creator>Michel</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://www.optimiced.com/en/?p=191</guid>
		<description><![CDATA[If you are a Web designer and often write (X)HTML/CSS code, then the following list might be useful for you. In it, I have combined the most popular fonts on Windows, MacOS and Linux systems. The data is drawn from here and the stats are valid as of January 17th, 2009: Windows: Microsoft Sans Serif: [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a Web designer and often write (X)HTML/CSS code, then the following list might be useful for you. In it, I have combined the most popular fonts on Windows, MacOS and Linux systems. The data is drawn from <a href="http://www.codestyle.org/css/font-family/sampler-CombinedResults.shtml">here</a> and the stats are valid as of January 17th, 2009:</p>
<p><strong>Windows:</strong></p>
<p>Microsoft Sans Serif: 99.61%<br />
<strong>Arial Black: 97.82%</strong><br />
Franklin Gothic Medium: 97.58%<br />
Palatino Linotype: 97.54%<br />
<strong>Verdana: 97.54%</strong><br />
<strong>Arial: 97.13%</strong><br />
<strong>Courier New: 96.96%</strong><br />
<strong>Comic Sans MS: 96.83%</strong><br />
Tahoma: 96.79%<br />
Lucida Console: 96.76%<br />
Impact: 96.49%<br />
<strong>Trebuchet MS: 95.97%</strong><br />
Sylfaen: 95.00%<br />
Lucida Sans Unicode: 94.34%<br />
<strong>Georgia: 92.97%</strong></p>
<p><strong>Mac:</strong></p>
<p>Monaco: 96.91%<br />
<strong>Arial: 96.62%</strong><br />
Courier: 96.48%<br />
Helvetica: 96.48%<br />
<strong>Arial Black: 95.78%</strong><br />
<strong>Verdana: 94.37%</strong><br />
<strong>Georgia: 93.53%</strong><br />
Helvetica Neue: 93.07%<br />
<strong>Trebuchet MS: 92.69%</strong><br />
Geneva: 92.41%<br />
<strong>Courier New: 92.12%</strong><br />
Gill Sans: 91.58%<br />
<strong>Comic Sans MS: 91.42%</strong><br />
Times New Roman: 90.58%<br />
Arial Narrow: 90.44%<br />
Apple Chancery: 90.15%<br />
Skia: 90.15%<br />
Lucida Grande: 90.01%<br />
Futura: 89.73%<br />
Hoefler Text: 88.47%</p>
<p><strong>*nix:</strong></p>
<p>DejaVu Sans Mono: 92.31%<br />
Bitstream Charter: 90.77%<br />
URW Chancery L: 89.87%<br />
Nimbus Mono L: 89.35%<br />
Century Schoolbook L: 89.09%</p>
<p>In <strong>bold</strong> above I have marked 7 font families in total. They are those fonts, which are found often on Windows and Mac (simultaneously), and these are (in mixed order):</p>
<p>1. <strong>Verdana</strong> <em>(sans-serif font family)</em><br />
2. <strong>Georgia</strong> <em>(serif font family)</em><br />
3. <strong>Courier New</strong> <em>(monotype font family)</em><br />
4. <strong>Arial</strong> <em>(sans-serif font family)</em><br />
5. <strong>Arial Black</strong> <em>(sans-serif font family)</em><br />
6. <strong>Trebuchet MS</strong> <em>(sans-serif font family)</em><br />
7. <strong>Comic Sans MS</strong> <em>(sans-serif font family)</em></p>
<p>Unfortunately, none of these 7 fonts can be found among the most widespread fonts on Linux/Unix. Looks like I was wrong, when I assumed, that Verdana, for example, is one of the most popular fonts on Windows/Mac/Linux &#8212; <a href="http://www.codestyle.org/css/font-family/sampler-CombinedResultsFull.shtml">the full stats</a> show that Verdana is available on more than 90% of Windows/MacOS systems, but only on ~ 50% of the Linux systems&#8230;</p>
<p>More interesting conclusions can be made from the two available lists (short and long), for me it is enough to know that there are at least a few font families, which can be found on Windows and Mac systems at the same time.</p>
<p>Or, at least, your chances are quite high that one of these 7 fonts will be available&#8230; :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.optimiced.com/en/2009/02/15/most-widespread-fonts-on-windows-mac-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

