<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>justaddwater.dk &#187; Web Standards</title>
	<link>http://justaddwater.dk</link>
	<description>Instant Usability &#38; Web Standards</description>
	<lastBuildDate>Fri, 12 Mar 2010 10:21:43 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Why WebStandards Matter</title>
		<description><![CDATA[I just revisited &#8220;Why Web Standards Matter (Case Study)&#8221;, that I wrote on the background of a customer problem back in 2006. The points are actually relevant event with the more recent and faster browser versions that we have today.
I did a small change to express my opinion better. Changed &#8220;JavaScript should generally be avoided&#8221; [...]]]></description>
		<link>http://justaddwater.dk/2010/03/12/1291/</link>
			</item>
	<item>
		<title>Script identifying CSS shorthand possibilities</title>
		<description><![CDATA[For my own convenience I created this script to identify css files where colors like #aaaaaa can be rewritten in the short form #aaa
(saves bandwith, but can also make it easier to identify similar colors)

grep -nE '#([0-9a-f])\1([0-9a-f])\2([0-9a-f])\3' **/*.css

output from a random project:

css/actions.css:19:  color: #000000;
css/actions.css:38:  color: #000000 !important;
css/actions.css:53:  color: #ffffff !important;
css/admin.css:90:	color: #cccccc;
css/admin.css:94:	color: #aaaaaa [...]]]></description>
		<link>http://justaddwater.dk/2009/10/21/script-identifying-css-shorthand-possibilities/</link>
			</item>
	<item>
		<title>Print CSS Background Logo Hack</title>
		<description><![CDATA[I learned this nice little hack to bypass the standard browser setting that normally prevents background images from being printed. 
The hack makes use of converting the background-image to a list item with an image. 

/* Hack, to trick the browser to print another logo
   Unfortunetaly, Firefox on Windows doesn't show logo on [...]]]></description>
		<link>http://justaddwater.dk/2009/09/29/print-css-background-logo-hack/</link>
			</item>
	<item>
		<title>CSS Styling Buttons Problem with Underlined Text</title>
		<description><![CDATA[I ran into the challenge the other day to style a&#60;button&#62; element to make it look like a link (with underline and everything).
Unfortunately, the &#60;button&#62; element does not react to text-decoration: underline;
But according to a discussion at the CSS Creator forum, there is a way out:
I was just messing around with it and for some [...]]]></description>
		<link>http://justaddwater.dk/2009/09/16/css-styling-buttons-problem-with-underlined-text/</link>
			</item>
	<item>
		<title>2 Must-Know HTML Table Colum Features Any Webdeveloper Should Be Aware Of</title>
		<description><![CDATA[<p>I was reading up on the good old HTML specification and discovered a feature I had always wanted -- and it's already there:
Creating widths of columns that will work like percentages, but will also pay attention to any small, fixed-width columns.</p>

<p>Take a look at HTML's proportional widths and amount alignment features.</p>]]></description>
		<link>http://justaddwater.dk/2009/09/02/2-must-know-html-table-colum-features-any-webdeveloper-should-be-aware-of/</link>
			</item>
	<item>
		<title>HTML Guide Textmate Snippets Open Sourced</title>
		<description><![CDATA[One year ago I published &#8220;Design Guide or HTML Markup Guide&#8221; with link to the HTML guide we did for the biggest Danish business internet portal.
The HTML guide is a really useful tool for every public authority that must deliver applications for the portal.
As a help for my own work back then, I created virk_dk_htmlsnippets:

Snippets [...]]]></description>
		<link>http://justaddwater.dk/2009/02/25/html-guide-textmate-snippets-open-sourced/</link>
			</item>
	<item>
		<title>CSS Fun: Flag Deprecated HTML Tags</title>
		<description><![CDATA[<a href="/2009/01/08/css-fun-flag-d…ated-html-tagscss-fun-flag-deprecated-html-tags/"><img src="http://justaddwater.dk/wp-content/uploads/2009/01/blink-and-flag-deprecated-font-b-i-tags.gif" alt="" title="blink-and-flag-deprecated-font-b-i-tags" width="249" height="165" class="alignnone size-full wp-image-991" /></a>]]></description>
		<link>http://justaddwater.dk/2009/01/08/css-fun-flag-deprecated-html-tags/</link>
			</item>
	<item>
		<title>Introducing Tiny JavaScript Number Formatter</title>
		<description><![CDATA[For a current project, I created a tiny number formatter that inserts thousand delimiters in a string:
10000 to 10,000 etc.
Just add css class=&#8221;numberformat currency&#8221; to a text field, and it will be formatted automatically.
It is based on the Prototype JavaScript library. You can get it from it&#8217;s GitHub repository page. Feel free to add or [...]]]></description>
		<link>http://justaddwater.dk/2008/08/18/introducing-tiny-javascript-number-formatter/</link>
			</item>
	<item>
		<title>Adding Deprecation Warning in JavaScript Console</title>
		<description><![CDATA[I used this quick trick today to help me clean up and refactor some javascript functions today:

if ("console" in window)
  console.warn('DEPRECATED function call to '+ arguments.callee
  +'\nCalled by:\n'+ arguments.callee.caller );

Which results in a fine deprecation warning in the console:

There is plenty of space for improvement here. Feel free to use or tamper &#8230; [...]]]></description>
		<link>http://justaddwater.dk/2008/07/17/adding-deprecation-warning-in-javascript-console/</link>
			</item>
	<item>
		<title>IE CSS Bug: Limited @include Statements</title>
		<description><![CDATA[I found out that Internet explorer only interprets 32 @include statements in CSS for a webpage. The rest is silently ignored. 
Tested with IE7. Has anybody tried this with IE8?
For more info see:
Internet Explorer issue &#8211; maximum of 32 CSS @import
PS. Silent ignorance is just about the worst form for ignorance when coding. The least [...]]]></description>
		<link>http://justaddwater.dk/2008/07/01/ie-css-bug-limited-include-statements/</link>
			</item>
</channel>
</rss>
