<?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>Antanova Ltd. &#187; link</title>
	<atom:link href="http://antanova.com/tags/link/feed" rel="self" type="application/rss+xml" />
	<link>http://antanova.com</link>
	<description>We make excellent websites</description>
	<lastBuildDate>Tue, 30 Mar 2010 09:08:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Code bits: reset / default stylesheet</title>
		<link>http://antanova.com/blog/code-bits/code-bits-reset-default-stylesheet</link>
		<comments>http://antanova.com/blog/code-bits/code-bits-reset-default-stylesheet#comments</comments>
		<pubDate>Wed, 13 Feb 2008 16:17:00 +0000</pubDate>
		<dc:creator>Jason C</dc:creator>
				<category><![CDATA[Code-bits]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[link]]></category>

		<guid isPermaLink="false">http://antanova.wordpress.com/2008/02/13/code-bits-reset-default-stylesheet/</guid>
		<description><![CDATA[Browser inconsistencies are something that drives a sane web developer mad. For example, last week, I was trying to shoehorn a fairly simple-looking design into some html/css code, ready to be dynamicised (yes, I did just write dynamicised. Sorry.) Unfortunately, what happened, as always, was that Safari used a different line-height to everyone else, IE [...]]]></description>
			<content:encoded><![CDATA[<p>Browser inconsistencies are something that drives a sane web developer mad. For example, last week, I was trying to shoehorn a fairly simple-looking design into some html/css code, ready to be dynamicised (yes, I did just write <em>dynamicised</em>. Sorry.) Unfortunately, what happened, as always, was that Safari used a different <code>line-height</code> to everyone else, IE used a different heading size, and Firefox was absolutely perfect, because that’s what I was doing most of my testing with.</p>
<p>I come across this problem all the time, as you can probably imaging, and my solution is to have a base css file that I then modify and extend for every project. Doing that largely eliminates inconsistencies, or at least makes inconsistencies consistent project after project.</p>
<p>Eric Meyer’s ‘CSS reset’ stylesheet has been knocking around for some time, and is a useful resource to use or just to look at and understand why he’s done what he’s done. Anyway, he’s now given it a <a href="http://meyerweb.com/eric/tools/css/reset/">permanent home on his site</a>, so there’s somewhere to check back for updates.</p>
<p><a href="http://meyerweb.com/eric/tools/css/reset/">http://meyerweb.com/eric/tools/css/reset/</a></p>
<p>Here it is in full…</p>
<blockquote>
<pre><code>/* v1.0 | 20080212 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

</code></pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://antanova.com/blog/code-bits/code-bits-reset-default-stylesheet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WCAG Cheatsheet</title>
		<link>http://antanova.com/blog/accessibility/wcag-cheatsheet</link>
		<comments>http://antanova.com/blog/accessibility/wcag-cheatsheet#comments</comments>
		<pubDate>Mon, 02 Jul 2007 19:41:00 +0000</pubDate>
		<dc:creator>Jason C</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[standards]]></category>

		<guid isPermaLink="false">http://antanova.wordpress.com/2007/07/02/wcag-cheatsheet/</guid>
		<description><![CDATA[While making accessible websites is accepted practice by any web devloper worth his or her salt, sometimes we need help identifying exactly how to. The W3C&#8217;s WCAG are here to help us, and our clients.
Trouble is, they&#8217;re quite in-depth and long-winded. Thankfully now, though I found something on my travels that will help me tick [...]]]></description>
			<content:encoded><![CDATA[<p>While making accessible websites is accepted practice by any web devloper worth his or her salt, sometimes we need help identifying exactly how to. The <acronym title="World Wide Web Consortium">W3C</acronym>&#8217;s <acronym title="Web Content Accessibility Guidelines">WCAG</acronym> are here to help us, and our clients.</p>
<p>Trouble is, they&#8217;re quite in-depth and long-winded. Thankfully now, though I found something on my travels that will help me tick as many of the accessibility boxes as possible. Remembering of course that making websites accessible is much more than just  crossing off items from a list.</p>
<p>Here is is: the <a href="http://worksperfectly.net/wcag/">WCAG cheatsheet</a></p>
]]></content:encoded>
			<wfw:commentRss>http://antanova.com/blog/accessibility/wcag-cheatsheet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
