<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.shayna.com,2009:/</id>
	<title type="text">Shayna Productions - Sandy Clark</title>
	<link rel="self" href="http://www.shayna.com/feeds/atom.xml" />
	<author>
		<name>Sandra Clark</name>
	</author>
	<updated>2009-04-22T09:00:01Z</updated>
	
			<entry>
				<id>urn:uuid:179</id>
				<title type="html"><![CDATA[CSS Back to Basics Class]]></title>
				<updated>2007-06-28T11:30:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=179"></link>
				
					<summary type="html"><![CDATA[<p>Well, I think my CSS presentation here at CFUNITED went well. My computer went totally nuts at the beginning, and I had to go without it for about 1/3 of the time, but I was able to get the information out.  Thanks to everyone at the session for their patience with my situation.</p>

<p>I didn't get to my special treat, which is popup Windows using a Class.  I've got the zip file up at: <a href="docs/popupwindows.zip">docs/popupwindows.zip</a> for your downloading pleasure.  The basic premise is that in an xHTML 1.0 strict environment, the target attribute is obsoleted. So there is no way to simply have a link open in a new window.  I actually blogged about this in <a href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&id=153">September, 2006</a>, and have been working on the solution since then.  The solution uses JavaScript and CSS together to create both the functionality of the popup window as well as add an image to the page to indicate that the link opens in a new window.  It also degrades gracefully without JavaScript and simply opens in the current window.</p>

<p>I've also made my <a href="docs/CSSBackToBasics.zip">presentation and sample files</a> available for download.  Enjoy!</p>]]></summary>
					
				<content type="html"><![CDATA[<p>Well, I think my CSS presentation here at CFUNITED went well. My computer went totally nuts at the beginning, and I had to go without it for about 1/3 of the time, but I was able to get the information out.  Thanks to everyone at the session for their patience with my situation.</p>

<p>I didn't get to my special treat, which is popup Windows using a Class.  I've got the zip file up at: <a href="docs/popupwindows.zip">docs/popupwindows.zip</a> for your downloading pleasure.  The basic premise is that in an xHTML 1.0 strict environment, the target attribute is obsoleted. So there is no way to simply have a link open in a new window.  I actually blogged about this in <a href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&id=153">September, 2006</a>, and have been working on the solution since then.  The solution uses JavaScript and CSS together to create both the functionality of the popup window as well as add an image to the page to indicate that the link opens in a new window.  It also degrades gracefully without JavaScript and simply opens in the current window.</p>

<p>I've also made my <a href="docs/CSSBackToBasics.zip">presentation and sample files</a> available for download.  Enjoy!</p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:177</id>
				<title type="html"><![CDATA[Naked Today!]]></title>
				<updated>2007-04-05T05:00:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=177"></link>
				
					<summary type="html"><![CDATA[<p>How structured is your page?  Do you have the guts to show it all off?</p>

<p>I do! So, once again, I'm participating in CSS Naked Day.  Why am I doing this?  Well, everone knows that I'm a proponent of Web Standards and Accessibility.  I also have some pretty good CSS skills.  One thing I've found is that a strong HTML structure supports all these things.</p>

<p>So I'm not afraid to take it all off. I'm proud of my "structure"</p>

<p>For more info <a href="http://naked.dustindiaz.com/">http://naked.dustindiaz.com/</a></p>]]></summary>
					
				<content type="html"><![CDATA[<p>How structured is your page?  Do you have the guts to show it all off?</p>

<p>I do! So, once again, I'm participating in CSS Naked Day.  Why am I doing this?  Well, everone knows that I'm a proponent of Web Standards and Accessibility.  I also have some pretty good CSS skills.  One thing I've found is that a strong HTML structure supports all these things.</p>

<p>So I'm not afraid to take it all off. I'm proud of my "structure"</p>

<p>For more info <a href="http://naked.dustindiaz.com/">http://naked.dustindiaz.com/</a></p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:176</id>
				<title type="html"><![CDATA[Simulating Attributes Selectors in IE6]]></title>
				<updated>2007-03-30T08:30:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=176"></link>
				
					<summary type="html"><![CDATA[
<p>Especially now that IE7 supports attribute selectors, using classes in my HTML to reflect those items has become a real bummer.
I really like the idea of not requiring people maintaining HTML to worry about classes.  I think it makes for cleaner markup and for easier training.
So, while I'm not a JavaScript maven by any means, I decided to play around with this and actually made it work.</p>

<h3>What is an Attribute Selector Anyway?</h3>
<p>An attribute selector is a CSS selector which says basically, "use these style rules if the value of an attribute is equal to something specific".  I tend to use attribute selectors mainly with forms, so my sample function deals exclusively with the input element.  It can however be extended to anything you want. So, if I want to target my CSS to only text inputs, or only select buttons, or only checkboxes.  I can use an attribute selector instead of a class.</p>]]></summary>
					
				<content type="html"><![CDATA[
<p>Especially now that IE7 supports attribute selectors, using classes in my HTML to reflect those items has become a real bummer.
I really like the idea of not requiring people maintaining HTML to worry about classes.  I think it makes for cleaner markup and for easier training.
So, while I'm not a JavaScript maven by any means, I decided to play around with this and actually made it work.</p>

<h3>What is an Attribute Selector Anyway?</h3>
<p>An attribute selector is a CSS selector which says basically, "use these style rules if the value of an attribute is equal to something specific".  I tend to use attribute selectors mainly with forms, so my sample function deals exclusively with the input element.  It can however be extended to anything you want. So, if I want to target my CSS to only text inputs, or only select buttons, or only checkboxes.  I can use an attribute selector instead of a class.</p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:150</id>
				<title type="html"><![CDATA[CSS Class in New York Canceled]]></title>
				<updated>2006-09-08T06:00:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=150"></link>
				
					<summary type="html"><![CDATA[<p>
Unfortunately, I am forced to cancel my Cascading Style Sheet Class in New York. I'm not sure when I'll be holding another public class.  If anyone is interested in Cascading Style Sheet training <a href="http://www.shayna.com/index.cfm?fuseaction=public.contact">please let me know</a>.</p>]]></summary>
					
				<content type="html"><![CDATA[<p>
Unfortunately, I am forced to cancel my Cascading Style Sheet Class in New York. I'm not sure when I'll be holding another public class.  If anyone is interested in Cascading Style Sheet training <a href="http://www.shayna.com/index.cfm?fuseaction=public.contact">please let me know</a>.</p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:147</id>
				<title type="html"><![CDATA[Microsoft releases list of IE CSS fixes]]></title>
				<updated>2006-08-23T09:30:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=147"></link>
				
					<summary type="html"><![CDATA[<p>Yesterday, Microsoft released a <a href="http://blogs.msdn.com/ie/archive/2006/08/22/712830.aspx">list of the fixes</a> that will go into Internet Explorer 7.</p>

<p>Its an interesting list to go over.  They've fixed a lot of the bugs that are posted on <a href="http://www.positioniseverything.net/explorer.html">Position Is Everything</a>.  Please note though that all the problems will still be there in Quirks Mode, so when writing for IE7, it is going to be extremely important to use the correct DocType to allow IE to render in Standards Mode.
</p>
<p>I think its a promising start.  IE will in no way, shape or form have the support for CSS 2.1 that Firefox, Safari or Opera do, but hey, maybe someday.</p>]]></summary>
					
				<content type="html"><![CDATA[<p>Yesterday, Microsoft released a <a href="http://blogs.msdn.com/ie/archive/2006/08/22/712830.aspx">list of the fixes</a> that will go into Internet Explorer 7.</p>

<p>Its an interesting list to go over.  They've fixed a lot of the bugs that are posted on <a href="http://www.positioniseverything.net/explorer.html">Position Is Everything</a>.  Please note though that all the problems will still be there in Quirks Mode, so when writing for IE7, it is going to be extremely important to use the correct DocType to allow IE to render in Standards Mode.
</p>
<p>I think its a promising start.  IE will in no way, shape or form have the support for CSS 2.1 that Firefox, Safari or Opera do, but hey, maybe someday.</p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:140</id>
				<title type="html"><![CDATA[CSS Hands On Interview]]></title>
				<updated>2006-08-02T11:00:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=140"></link>
				
					<summary type="html"><![CDATA[<p>I recently found an interview I did last year with David Epler regarding my Hands On CSS Class.  For those of you wondering whether my class is worth the time and expense, I think this gives a good explanation of what you can get out of it.</p>]]></summary>
					
				<content type="html"><![CDATA[<p>I recently found an interview I did last year with David Epler regarding my Hands On CSS Class.  For those of you wondering whether my class is worth the time and expense, I think this gives a good explanation of what you can get out of it.</p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:139</id>
				<title type="html"><![CDATA[Get Ready for IE7]]></title>
				<updated>2006-07-27T09:00:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=139"></link>
				
					<summary type="html"><![CDATA[<p><a href="http://news.com.com/Microsoft+tags+IE+7+high+priority+update/2100-7350_3-6098500.html?tag=nefd.lede">CNET is reporting</a> that Microsoft is going to push IE7 out via windows update as a high priority update in the 4th quarter. Users will be asked if they want to update or not, but especially among less technical users, I am sure many of them will simply install the update.</p>

<p>What does this mean for us?  Well, for commercial sites, it means that a lot of shoppers will probably be using IE7 when it comes to the holiday season shopping rush. For all of us, unless sites are working correctly with IE7 from the beginning of this onslaught, expect a lot more emails and calls regarding "your broken site".</p>

<p>Businesses will have the option of holding off on the update via a special tool that Microsoft will make available that will block the updater from happening. Which means that we will still be stuck supporting IE6 for quite a while.</p>

<p>So start working with your websites now.</p>
 
 	<ul>
 		<li><a href="http://www.microsoft.com/windows/ie/default.mspx">download the IE7 Beta</a> and put it on a test machine (you can't go backwards from it once its installed).</li>
 		<li>Remove the hacks from your CSS files, most of them will fail.</li>
 		<li>Use the <a href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&id=131">conditional comments I blogged</a> about a few weeks ago to conditionally send  CSS (and Javascript) to either IE7 or IE6 and make your specific support changes in there.</li>
 	</ul>]]></summary>
					
				<content type="html"><![CDATA[<p><a href="http://news.com.com/Microsoft+tags+IE+7+high+priority+update/2100-7350_3-6098500.html?tag=nefd.lede">CNET is reporting</a> that Microsoft is going to push IE7 out via windows update as a high priority update in the 4th quarter. Users will be asked if they want to update or not, but especially among less technical users, I am sure many of them will simply install the update.</p>

<p>What does this mean for us?  Well, for commercial sites, it means that a lot of shoppers will probably be using IE7 when it comes to the holiday season shopping rush. For all of us, unless sites are working correctly with IE7 from the beginning of this onslaught, expect a lot more emails and calls regarding "your broken site".</p>

<p>Businesses will have the option of holding off on the update via a special tool that Microsoft will make available that will block the updater from happening. Which means that we will still be stuck supporting IE6 for quite a while.</p>

<p>So start working with your websites now.</p>
 
 	<ul>
 		<li><a href="http://www.microsoft.com/windows/ie/default.mspx">download the IE7 Beta</a> and put it on a test machine (you can't go backwards from it once its installed).</li>
 		<li>Remove the hacks from your CSS files, most of them will fail.</li>
 		<li>Use the <a href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&id=131">conditional comments I blogged</a> about a few weeks ago to conditionally send  CSS (and Javascript) to either IE7 or IE6 and make your specific support changes in there.</li>
 	</ul>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:137</id>
				<title type="html"><![CDATA[ Håkon Wium Lie responds to SlashDot Questions]]></title>
				<updated>2006-07-24T07:00:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=137"></link>
				
					<summary type="html"><![CDATA[<p>Back in June, yes I'm finally getting caught up) Slashdot readers were asked to submit questions to  Håkon Wium Lie, currently affiliated with Opera, but also one of the inventors of CSS.  He not only answered the 5 officially submitted questions, but a bunch of other ones he found interesting as well.  <a href="http://interviews.slashdot.org/article.pl?sid=06/06/23/1443203">Check it out</a>.</p>]]></summary>
					
				<content type="html"><![CDATA[<p>Back in June, yes I'm finally getting caught up) Slashdot readers were asked to submit questions to  Håkon Wium Lie, currently affiliated with Opera, but also one of the inventors of CSS.  He not only answered the 5 officially submitted questions, but a bunch of other ones he found interesting as well.  <a href="http://interviews.slashdot.org/article.pl?sid=06/06/23/1443203">Check it out</a>.</p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:136</id>
				<title type="html"><![CDATA[Yahoo Developer Network - Fonts CSS library]]></title>
				<updated>2006-07-21T07:00:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=136"></link>
				
					<summary type="html"><![CDATA[<p>The <a href="http://developer.yahoo.com/yui/fonts/">Fonts CSS Library</a> offers a free library downloadable under the BSD license which:</p>

<blockquote>
The foundational Fonts CSS file offers cross-browser typographical normalization and control. Fonts CSS:
</blockquote>
<ul>
	<li>Offers full A-grade browser support.</li>
	<li>Provides consistent font sizing and line-height.</li>
	<li>Provides appropriate cross-OS font-family degradation paths.</li>
	<li>Supports user-driven font-size adjustment in the browser, including cross-browser consistency for adjusted sizes.</li>
	<li>Works in both "Quirks Mode" and "Standards Mode."</li>
	<li>Normalizes the dimensions of an "em" unit, facilitating liquid-dimension development.</li>
</ul>]]></summary>
					
				<content type="html"><![CDATA[<p>The <a href="http://developer.yahoo.com/yui/fonts/">Fonts CSS Library</a> offers a free library downloadable under the BSD license which:</p>

<blockquote>
The foundational Fonts CSS file offers cross-browser typographical normalization and control. Fonts CSS:
</blockquote>
<ul>
	<li>Offers full A-grade browser support.</li>
	<li>Provides consistent font sizing and line-height.</li>
	<li>Provides appropriate cross-OS font-family degradation paths.</li>
	<li>Supports user-driven font-size adjustment in the browser, including cross-browser consistency for adjusted sizes.</li>
	<li>Works in both "Quirks Mode" and "Standards Mode."</li>
	<li>Normalizes the dimensions of an "em" unit, facilitating liquid-dimension development.</li>
</ul>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:135</id>
				<title type="html"><![CDATA[Fully compliant <abbr title="Content Management System">CMS</abbr> Editor available]]></title>
				<updated>2006-07-20T06:45:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=135"></link>
				
					<summary type="html"><![CDATA[<p><a href="http://www.xstandard.com/default.asp">XStandard</a> has released its newest version (1.7.1) of its standards-compliant plug-in <abbr title="What You See Is What You Get">WYSIWYG</abbr> editor for Windows desktop applications and browser-based content management systems IE/Mozilla/Firefox/Opera/Netscape).</p>
]]></summary>
					
				<content type="html"><![CDATA[<p><a href="http://www.xstandard.com/default.asp">XStandard</a> has released its newest version (1.7.1) of its standards-compliant plug-in <abbr title="What You See Is What You Get">WYSIWYG</abbr> editor for Windows desktop applications and browser-based content management systems IE/Mozilla/Firefox/Opera/Netscape).</p>
]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:134</id>
				<title type="html"><![CDATA[CSS Library]]></title>
				<updated>2006-07-19T07:30:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=134"></link>
				
					<summary type="html"><![CDATA[<p>Another great site I found to help with CSS is <a href="http://www.dynamicdrive.com/style/">Dynamic Drive CSS Library</a>, which claims</p>
<blockquote>
	you'll find original, practical CSS codes and examples such as CSS menus to give your site a visual boast.
</blockquote>

<p>The site breaks itself into sections for Horizontal and Vertical CSS menus, Image CSS, Forms CSS, Divs and Containers, Links and Buttons, and more.  The code samples are structured HTML (which I promote) and the CSS examples show well worked CSS.  </p>



]]></summary>
					
				<content type="html"><![CDATA[<p>Another great site I found to help with CSS is <a href="http://www.dynamicdrive.com/style/">Dynamic Drive CSS Library</a>, which claims</p>
<blockquote>
	you'll find original, practical CSS codes and examples such as CSS menus to give your site a visual boast.
</blockquote>

<p>The site breaks itself into sections for Horizontal and Vertical CSS menus, Image CSS, Forms CSS, Divs and Containers, Links and Buttons, and more.  The code samples are structured HTML (which I promote) and the CSS examples show well worked CSS.  </p>



]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:133</id>
				<title type="html"><![CDATA[Render your CSS as you Type]]></title>
				<updated>2006-07-18T07:30:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=133"></link>
				
					<summary type="html"><![CDATA[<p>Cool new tool for CSS is <a href="http://gregtaff.com/rendar2.html">Rendr</a>, a site that shows you how your CSS will look as you type it.  Add in your markup, your CSS and see the page change as you type!</p>]]></summary>
					
				<content type="html"><![CDATA[<p>Cool new tool for CSS is <a href="http://gregtaff.com/rendar2.html">Rendr</a>, a site that shows you how your CSS will look as you type it.  Add in your markup, your CSS and see the page change as you type!</p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:131</id>
				<title type="html"><![CDATA[Properly hiding CSS from Internet Explorer]]></title>
				<updated>2006-07-11T07:30:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=131"></link>
				
					<summary type="html"><![CDATA[<p>At CFUNITED, I mentioned the proper way to hide information from Internet Explorer.  While many CSS filters and hacks rely on using advanced selectors that IE 6 and below don't recognize, that is not going to be the case for Internet Explorer 7.</p>

<p>So the proper way to hide information from Internet Explorer would be to use something similar to the code below.</p>]]></summary>
					
				<content type="html"><![CDATA[<p>At CFUNITED, I mentioned the proper way to hide information from Internet Explorer.  While many CSS filters and hacks rely on using advanced selectors that IE 6 and below don't recognize, that is not going to be the case for Internet Explorer 7.</p>

<p>So the proper way to hide information from Internet Explorer would be to use something similar to the code below.</p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:127</id>
				<title type="html"><![CDATA[CSS Class Registration Now Open]]></title>
				<updated>2006-06-15T07:45:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=127"></link>
				
					<summary type="html"><![CDATA[<p>CSS Hands on (a 4 day, hands on class) will be held in New York City October 10-13.  The class will be held in Mid-Town.  I've gotten rave reviews for this class in the past, and I'm looking forward to seeing you in New York.</p>
<blockquote> The Hands on Cascading Style Sheets class is an intensive 4 day workshop that is aimed at both the beginner and advanced CSS user. For beginners, the class starts with the basics such as HTML and CSS values and works up to positioning and table less layouts. Advanced CSS users, will find plenty to interest them in the first few days as I take them through the proper use of CSS selectors, quirks vs. standards mode and a through grounding in web typography. From there, they learn about the box model, which leads them into positioning and layouts.</blockquote>
<p>Space is limited to 12 students, payment may be either via Corporate Check or Credit Card via Paypal. <a href="http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1">Don't delay, register now!</a></p>]]></summary>
					
				<content type="html"><![CDATA[<p>CSS Hands on (a 4 day, hands on class) will be held in New York City October 10-13.  The class will be held in Mid-Town.  I've gotten rave reviews for this class in the past, and I'm looking forward to seeing you in New York.</p>
<blockquote> The Hands on Cascading Style Sheets class is an intensive 4 day workshop that is aimed at both the beginner and advanced CSS user. For beginners, the class starts with the basics such as HTML and CSS values and works up to positioning and table less layouts. Advanced CSS users, will find plenty to interest them in the first few days as I take them through the proper use of CSS selectors, quirks vs. standards mode and a through grounding in web typography. From there, they learn about the box model, which leads them into positioning and layouts.</blockquote>
<p>Space is limited to 12 students, payment may be either via Corporate Check or Credit Card via Paypal. <a href="http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1">Don't delay, register now!</a></p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
			<entry>
				<id>urn:uuid:125</id>
				<title type="html"><![CDATA[Open Standards vs. Microsoft - The battle continues]]></title>
				<updated>2006-06-13T07:30:00Z</updated>
				<link rel="alternate" type="text/html" href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;id=125"></link>
				
					<summary type="html"><![CDATA[<p>There's been a flurry of posts, comments and other hoopla regarding IE7, Microsoft, The Web Standards Project (WaSP) and the community in general in May.  </p>

<p>It all begins with an interview in <a href="http://www.thinkvitamin.com/features/design/the-battle-for-web-standards">Vitamin with Molly Holzschlag</a>, a noted CSS author and a member of both Wasp and the Wasp MS Task Force (a task force within WaSP which coordinates with various teams within Microsoft.  This interview, while fairly innocuous and diplomatic, created an entire firestorm of comments.</p>]]></summary>
					
				<content type="html"><![CDATA[<p>There's been a flurry of posts, comments and other hoopla regarding IE7, Microsoft, The Web Standards Project (WaSP) and the community in general in May.  </p>

<p>It all begins with an interview in <a href="http://www.thinkvitamin.com/features/design/the-battle-for-web-standards">Vitamin with Molly Holzschlag</a>, a noted CSS author and a member of both Wasp and the Wasp MS Task Force (a task force within WaSP which coordinates with various teams within Microsoft.  This interview, while fairly innocuous and diplomatic, created an entire firestorm of comments.</p>]]></content>
				
					<category term="Accessibility"></category>
				
					<category term="CSS"></category>
				
					<category term="JavaScript"></category>
				
			</entry>
			
</feed>
