<?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/"
	xmlns:georss="http://www.georss.org/georss">

<channel>
	<title>www.netsi.dk &#187; css</title>
	<atom:link href="http://www.netsi.dk/wordpress/index.php" rel="self" type="application/rss+xml" />
	<link>http://www.netsi.dk/wordpress</link>
	<description>&#34;The internet is just a layer on the real world&#34; (don&#039;t forget that!)</description>
	<lastBuildDate>Fri, 27 Jan 2012 15:57:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<atom:link rel="next" href="http://www.netsi.dk/wordpress/index.php?page=2" />

		<item>
		<title>Extend Object with method that handles CSS values in javascript</title>
		<link>http://www.netsi.dk/wordpress/index.php/2012/01/12/extend-object-with-method-that-handles-css-values-in-javascript/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2012/01/12/extend-object-with-method-that-handles-css-values-in-javascript/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 08:59:55 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[getCSSValueAndUnit]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2012/01/12/extend-object-with-method-that-handles-css-values-in-javascript/</guid>
		<description><![CDATA[If you are working with CSS and need to for instance add or subtract a value to a CSS value like “15px” or “3em” this method “getCSSValueAndUnit()” will come in handy. Simply add the code somewhere in the top to extend the “Object” object. &#160; The method is used as follows: &#34;10px&#34;.getCSSValueAndUnit(); which will return [...]]]></description>
			<content:encoded><![CDATA[<p>If you are working with <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a> and need to for instance add or subtract a value to a <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a> value like “15px” or “3em” this method “<a href="http://www.netsi.dk/wordpress/index.php/tag/getcssvalueandunit/" class="st_tag internal_tag" rel="tag" title="Posts tagged with getCSSValueAndUnit">getCSSValueAndUnit</a>()” will come in handy.</p>
<p>Simply add the code somewhere in the top to extend the “Object” object.</p>
<p>&#160;</p>
<p>The method is used as follows:</p>
<pre>&quot;10px&quot;.getCSSValueAndUnit();</pre>
<p>which will return an object:</p>
<pre>{ 'value':10, 'unit':'px' }</pre>
<p>Simple but very usefull!</p>
<p>&#160;</p>
<pre>Object.prototype.getCSSValueAndUnit = function() {
  var oReUnit = new RegExp('[0123456789\.-]', 'ig');
  var sOriginal = this.toString();
  var sUnitRaw = sOriginal.replace(oReUnit, '')
  var sUnit = sUnitRaw.replace(new RegExp(' ', 'ig'), '');
  var vValue = parseFloat(sOriginal.replace(sUnitRaw,''));
  return {'value':vValue, 'unit':sUnit};
}</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2012%2F01%2F12%2Fextend-object-with-method-that-handles-css-values-in-javascript%2F&amp;title=Extend%20Object%20with%20method%20that%20handles%20CSS%20values%20in%20javascript" id="wpa2a_2"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2012/01/12/extend-object-with-method-that-handles-css-values-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speeding up you CSS in Visual Studio using Web Essentials plug-in</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/11/29/speeding-up-you-css-in-visual-studio-using-web-essentials-plug-in/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/11/29/speeding-up-you-css-in-visual-studio-using-web-essentials-plug-in/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 20:06:21 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/11/29/speeding-up-you-css-in-visual-studio-using-web-essentials-plug-in/</guid>
		<description><![CDATA[Mads Kristensen (@mkristensen) is the name of the person bringing speed and hope for the CSS part of Microsoft Visual Studio. He is adding new life the the rather dead CSS part of Visual Studio. He is doing so through his free plug-in for Visual Studio: Web Essentials. The features In general Web Essentials makes [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Mads Kristensen Program Manager at the Microsoft Web Platform team and founder of BlogEngine.NET" href="http://madskristensen.net/page/about-mads-kristensen.aspx" target="_blank">Mads Kristensen</a> (<a title="Follow Mads Kristensen on Twitter" href="https://twitter.com/mkristensen" target="_blank">@mkristensen</a>) is the name of the person bringing speed and hope for the <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a> part of Microsoft Visual Studio. He is adding new life the the rather dead <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a> part of Visual Studio. He is doing so through his free <a href="http://www.netsi.dk/wordpress/index.php/tag/plug-in/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plug-in">plug-in</a> for Visual Studio: <a title="Visit the page containing the Web Essentials plug-in for Visual Studio" href="http://visualstudiogallery.msdn.microsoft.com/6ed4c78f-a23e-49ad-b5fd-369af0c2107f" target="_blank">Web Essentials</a>.</p>
<h1>The features</h1>
<p>In general <a title="Visit the page containing the Web Essentials plug-in for Visual Studio" href="http://visualstudiogallery.msdn.microsoft.com/6ed4c78f-a23e-49ad-b5fd-369af0c2107f" target="_blank">Web Essentials</a> makes working with CSS in Visual Studio more nice, adding features like colour and font preview, change of values using Ctrl+Arrows (up=add, down=subtract as you know it from for instance Firebug and Google Chrome), option to base64 encode images and <a title="Read more about the speed typing feature added to visual studio with Web Essentials plug-in" href="http://madskristensen.net/post/CSS-speed-typing-for-Visual-Studio.aspx" rel="Read more about the speed typing feature added to visual studio with Web Essentials plug-in" target="_blank">speed typing</a>. I can only recommend this plug-in, and also the fact that Mads listens to you request given to him for instance through twitter makes me a happy user! Well done Mads, and keep up the good job! <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smiley" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/11/wlEmoticon-smile2.png" /></p>
<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Amoung other features: Embed image as base64 encoded image" border="0" alt="Amoung other features: Embed image as base64 encoded image" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/11/image7.png" width="789" height="239" /></p>
<h5>Links</h5>
<ul>
<li><a title="Another must read post about speeding up your work with webpages in Visual Studio" href="http://www.netsi.dk/wordpress/index.php/2009/12/02/zen-coding-a-very-fast-way-of-generating-html-elements-in-your-editor/" target="_blank">Zen coding plug-in</a> – You should also read that post if you want to speed up your work in general in Visual Studio</li>
<li><a title="Visit the page containing the Web Essentials plug-in for Visual Studio" href="http://visualstudiogallery.msdn.microsoft.com/6ed4c78f-a23e-49ad-b5fd-369af0c2107f" target="_blank">Web Essentials</a> – find the plug-in here and read about all the features in it</li>
<li><a title="Mads Kristensen Program Manager at the Microsoft Web Platform team and founder of BlogEngine.NET" href="http://madskristensen.net/page/about-mads-kristensen.aspx" target="_blank">Mads Kristensen</a> (<a title="Follow Mads Kristensen on Twitter" href="https://twitter.com/mkristensen" target="_blank">@mkristensen</a>) – the developer of <a title="Visit the page containing the Web Essentials plug-in for Visual Studio" href="http://visualstudiogallery.msdn.microsoft.com/6ed4c78f-a23e-49ad-b5fd-369af0c2107f" target="_blank">Web Essentials</a> plug-in</li>
<li>What is <a title="Base64 Encoding for Images explained" href="http://www.9lessons.info/2010/11/base64-encoding-for-images.html" target="_blank">Base64 encoding of images</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F11%2F29%2Fspeeding-up-you-css-in-visual-studio-using-web-essentials-plug-in%2F&amp;title=Speeding%20up%20you%20CSS%20in%20Visual%20Studio%20using%20Web%20Essentials%20plug-in" id="wpa2a_4"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/11/29/speeding-up-you-css-in-visual-studio-using-web-essentials-plug-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Color palette generator</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/11/15/color-palette-generator/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/11/15/color-palette-generator/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 14:24:19 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[webapp]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/11/15/color-palette-generator/</guid>
		<description><![CDATA[http://www.cssdrive.com/imagepalette/index.php​ This is a cool webapp where you upload an image and the colors from the image is converted into a number of colors. That way you can extract tones and colors to use on a webdesign.]]></description>
			<content:encoded><![CDATA[<p><a title="Try this cool webapp" href="http://www.cssdrive.com/imagepalette/index.php" target="_blank"><img style="margin: 0px 0px 10px; display: inline; float: left" title="image" alt="image" align="left" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/11/image2.png" width="250" height="233" /></a><a href="http://www.cssdrive.com/imagepalette/index.php">http://www.cssdrive.com/imagepalette/index.php​</a>
<p>This is a <a href="http://www.netsi.dk/wordpress/index.php/tag/cool/" class="st_tag internal_tag" rel="tag" title="Posts tagged with cool">cool</a> <a href="http://www.netsi.dk/wordpress/index.php/tag/webapp/" class="st_tag internal_tag" rel="tag" title="Posts tagged with webapp">webapp</a> where you upload an image and the colors from the image is converted into a number of colors.</p>
<p>That way you can extract tones and colors to use on a webdesign.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F11%2F15%2Fcolor-palette-generator%2F&amp;title=Color%20palette%20generator" id="wpa2a_6"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/11/15/color-palette-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Printing HTML pages, make screen and print appear the same.</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 08:29:22 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dynamicweb]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/</guid>
		<description><![CDATA[When using external stylesheets on a webpage you can specify which “media” it should apply to. For instance see these lines: &#60;link rel=&#34;stylesheet&#34; href=&#34;Blueprint/screen.css&#34; type=&#34;text/css&#34; media=&#34;screen, projection&#34; /&#62; &#60;link rel=&#34;stylesheet&#34; href=&#34;Blueprint/print.css&#34; type=&#34;text/css&#34; media=&#34;print&#34; /&#62; .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre [...]]]></description>
			<content:encoded><![CDATA[<p>When using external stylesheets on a webpage you can specify which “media” it should apply to. For instance see these lines:</p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">link</span> <span class="attr">rel</span><span class="kwrd">=&quot;<a href="http://www.netsi.dk/wordpress/index.php/tag/stylesheet/" class="st_tag internal_tag" rel="tag" title="Posts tagged with stylesheet">stylesheet</a>&quot;</span> <span class="attr">href</span><span class="kwrd">=&quot;Blueprint/screen.<a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">css</a>&quot;</span> <span class="attr">type</span><span class="kwrd">=&quot;text/css&quot;</span> <span class="attr">media</span><span class="kwrd">=&quot;screen, projection&quot;</span> <span class="kwrd">/&gt;</span>
<span class="kwrd">&lt;</span><span class="html">link</span> <span class="attr">rel</span><span class="kwrd">=&quot;stylesheet&quot;</span> <span class="attr">href</span><span class="kwrd">=&quot;Blueprint/<a href="http://www.netsi.dk/wordpress/index.php/tag/print/" class="st_tag internal_tag" rel="tag" title="Posts tagged with print">print</a>.css&quot;</span> <span class="attr">type</span><span class="kwrd">=&quot;text/css&quot;</span> <span class="attr">media</span><span class="kwrd">=&quot;print&quot;</span> <span class="kwrd">/&gt;</span></pre>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	<a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a>: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-<a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a>: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { <a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a>: #008000; }
.csharpcode .kwrd { <a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a>: #0000ff; }
.csharpcode .str { <a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a>: #006080; }
.csharpcode .op { <a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a>: #0000c0; }
.csharpcode .preproc { <a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a>: #cc6633; }
.csharpcode .asp { background-<a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a>: #ffff00; }
.csharpcode .<a href="http://www.netsi.dk/wordpress/index.php/tag/html/" class="st_tag internal_tag" rel="tag" title="Posts tagged with html">html</a> { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</p>
<p>As you might allready have guessed the <strong>screen.css</strong> will be choosen for screen (read: browser) and projection mode. When printing the <strong>print.css</strong> will be choosen if you print the webpage. So far so good.</p>
<p>Some times you will have a specific page for print, which say will render only a stripped down version of your content and prompt the user with a print dialogue (using a <a href="http://www.netsi.dk/wordpress/index.php/tag/javascript/" class="st_tag internal_tag" rel="tag" title="Posts tagged with javascript">javascript</a> window.print() line of code). But when you see the page in the browser you are in “screen” media, and the style shown will be as defined in the screen.css. You may confuse the user as he gets a screen version ready for print – and printing it wil result in a version based on the print.css. I have made a jQuery based fix for this situation.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/07/image.png" rel="lightbox[687]"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="The page before and after the fix" border="0" alt="The page before and after the fix" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/07/image_thumb.png" width="711" height="392" /></a></p>
<h3>The jQuery fix</h3>
<p>The fix will disable any external stylesheets related to screen and make the print.css work on media types “all”. It is coded so that it will check for a “#print” added to the URL. So you should simply make the URL of the printversion have a “#print” in it. Here is the fix:</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd">&lt;</span><span class="html">script</span> <span class="attr">type</span><span class="kwrd">=&quot;text/javascript&quot;</span> <span class="attr">src</span><span class="kwrd">=&quot;http://ajax.microsoft.com/ajax/jQuery/jquery-1.6.2.min.js&quot;</span><span class="kwrd">&gt;&lt;/</span><span class="html">script</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">   2:  </span>&lt;script type=<span class="str">&quot;text/javascript&quot;</span>&gt;</pre>
<pre class="alt"><span class="lnum">   3:  </span><span class="rem">/* STH: 2011-07-07 Make any stylesheets target for &quot;print&quot; media active on &quot;all&quot; media types (including screen)</span></pre>
<pre><span class="lnum">   4:  </span><span class="rem">    Also disable any layouts for screen</span></pre>
<pre class="alt"><span class="lnum">   5:  </span><span class="rem">*/</span></pre>
<pre><span class="lnum">   6:  </span>jQuery(<span class="kwrd">function</span>() {</pre>
<pre class="alt"><span class="lnum">   7:  </span>  <span class="kwrd">var</span> bPrint = (window.location.toString().indexOf(<span class="str">'#print'</span>)!=-1);  </pre>
<pre><span class="lnum">   8:  </span>  <span class="kwrd">if</span> (bPrint) {</pre>
<pre class="alt"><span class="lnum">   9:  </span>    <span class="rem">// The user wants to print this page</span></pre>
<pre><span class="lnum">  10:  </span>    jQuery(<span class="str">'link[media*=&quot;print&quot;]'</span>).attr(<span class="str">'media'</span>, <span class="str">'all'</span>); <span class="rem">// Enable the print styling for all media types, including screen.</span></pre>
<pre class="alt"><span class="lnum">  11:  </span>    jQuery(<span class="str">'link[media*=&quot;screen&quot;]'</span>).remove(); <span class="rem">// remove any styling related to screen</span></pre>
<pre><span class="lnum">  12:  </span>  }</pre>
<pre class="alt"><span class="lnum">  13:  </span>})</pre>
<pre><span class="lnum">  14:  </span><span class="kwrd">&lt;/</span><span class="html">script</span><span class="kwrd">&gt;</span></pre>
</div>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>&#160;</p>
<p>The fix above has a link to jQuery, you do not have to include it if you allready have jQuery on your webpage.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F07%2F07%2Fprinting-html-pages-make-screen-and-print-appear-the-same%2F&amp;title=Printing%20HTML%20pages%2C%20make%20screen%20and%20print%20appear%20the%20same." id="wpa2a_8"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Introducing &#8220;Xara Designer Pro 7&#8221;, all you need to work with graphics!</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/06/26/introducing-xara-designer-pro-7-all-you-need-to-work-with-graphics/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/06/26/introducing-xara-designer-pro-7-all-you-need-to-work-with-graphics/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 14:47:58 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[xara]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Xara Designer Pro 7]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/06/26/introducing-xara-designer-pro-7-all-you-need-to-work-with-graphics/</guid>
		<description><![CDATA[Xara is the name of a British company which has been living in the shadow of Adobe for many years with its all-in-one graphics application. This version has been around since ARM was a custom chip running a desktop computer called Acorn Risc PC. Perhaps this is a good thing to relate to, as ARM [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Click to goto Xara.com and download your free trial copy of Xara Designer Pro" href="http://www.xara.com/eu/downloads/designer/" target="_blank"><img style="margin: 0px 0px 20px 20px; display: inline; float: right;" src="http://www.xaraxone.com/webxealot/workbook89/index_html_files/21.png" alt="" align="right" /></a><em><a href="http://www.netsi.dk/wordpress/index.php/tag/xara/" class="st_tag internal_tag" rel="tag" title="Posts tagged with xara">Xara</a> is the name of a British company which has been living in the shadow of Adobe for many years with its all-in-one graphics application. This version has been around since ARM was a custom chip running a desktop computer called Acorn Risc PC. Perhaps this is a good thing to relate to, as ARM now is properly the most successful chipset around in the world, taking every from Google Cromebooks over Apple iPads, Android “pads”, TV sets and even windows 8 by storm. The same should happen to this graphics application called <a href="http://www.netsi.dk/wordpress/index.php/tag/xara-designer-pro-7/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Xara Designer Pro 7">Xara Designer Pro 7</a> ! It’s fast, rich featured, easy to use, compatible with other main graphics packages like Adobe Photoshop, it produces SVG, webpages and I could go on! You should at least go and download a free trial from: </em><a href="http://www.xara.com"><em>www.xara.com</em></a><em>!</em></p>
<h3>Vector, pixel, <a href="http://www.netsi.dk/wordpress/index.php/tag/html/" class="st_tag internal_tag" rel="tag" title="Posts tagged with html">HTML</a>, presentation, video, 3D and DTP…</h3>
<p>The program has many basic things build into one application, I like that. Everything you create in it is vector based, except of cause if you work with pixel based elements like photos. At my work where I implement websites in CMS systems I use Xara for many types of graphics operations. I might <a href="http://www.netsi.dk/wordpress/index.php/tag/design/" class="st_tag internal_tag" rel="tag" title="Posts tagged with design">design</a> buttons where I get automated scaled versions which also have mouse hovering and selected states. They are vector based, so scaling them up and down is very easy. I can use theme colors which makes it possible to reuse them on other websites. I can add popup layers to them and links. I simply export it, and Xara Designer Pro 7 produces a HTML page in seconds containing exactly what I need in the CMS system.</p>
<p>At a later state when I need to document the use of the website I can create a manual with working buttons inside it, the same buttons as I just used on the website. I can even export the pages to PDF, giving the customer both an offline manual (PDF) and a full featured HTML website with the documentation.</p>
<h3>A webpage with some of the enhancements</h3>
<p><a href="http://www.netsi.dk/xara/XDP7/index.htm"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="See an example of the HTML that Xara Designer Pro 7 can generate" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0014.png" border="0" alt="See an example of the HTML that Xara Designer Pro 7 can generate" width="640" height="300" /></a></p>
<p>I have collected some of the features on two webpages. They of cause have been created in Xara Designer Pro 7!</p>
<h3>Some of the new enhancements</h3>
<p>Xara Designer Pro 7 has been packed with a lot of enhancements to the way that you use the program. Many of them relate to the program trying to a more “mainstream” Windows 7 application. For instance the tabbed document windows and the fly-out and docking option for the gallery system. Those enhancements are nice to new users but for me not essential, because I know my way around the application with or without such standard windows 7 UI.</p>
<p>Xara Designer Pro 7 offers <strong>new paste options</strong> allowing you to paste different properties to objects. If you for instance need one object to have same size as another you simply select the first object which is placed where you want to position both object, press Ctll+C. Now a lot of information from that object is on the clipboard and you can select any other to copy various properties from it onto other objects. In this case, the position. Some of the many paste options which Xara Designer Pro 7 now offers are:</p>
<ul>
<li>Paste replacing selection</li>
<li>Paste format/attributes. This will apply relevant attributes from object on clipboard to selected object. For instance <a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a>, shadow or opacity.</li>
<li>Paste opacity mask. You can use any object as an opacity mask. This for instance allows you to have Text appear as a mask on a photo. Opacity masks in Xara Designer Pro 7 will mask out the object is placed on – black colors will give 100% masking, and white no masking.</li>
<li>Paste position; change the position of the selected object to that of that of the object on the clipboard. If however you have several objects on clipboard it gets a little tricky. I experienced that it just moved the object outside the canvas – not logical.</li>
</ul>
<p>Another great enhancement is the ability to <strong>edit groups in a separate window</strong>, allowing you to focus on the elements in the group. You simply double click on the group and a new “inside editing window” is opened. I like that feature.</p>
<p>Some of the existing functions have been arranged differently or made easier/quickly to access. For instance the alignment function can now be accessed directly by right clicking on your mouse. Small changes, but I guess that it all adds to Xara Designer Pro 7 being even faster to use.</p>
<h5>New features</h5>
<p><strong>Live copies</strong> – you can have objects where changes to the properties of each copy will apply to all the live copies of the element. Size, rotation, opacity and other properties however will be local to each copy. An interesting new feature which I for one am looking forward to use.</p>
<p><strong>Magic snap</strong> &#8211; visual help and snapping when aligning objects allows you to create good looking designs much easier. Take a look at this example:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0034.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The aligment lines makes it very easy to align elements" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0034_thumb.png" border="0" alt="The aligment lines makes it very easy to align elements" width="640" height="423" /></a></p>
<p>The alignment of the text above was easily done, as Xara Designer Pro 7 showed lines indicating where I could align two objects. This makes a design better in balance. What the illustration also shows is that I add a mouse over effect with a popup layer fading in. Xara Designer Pro 7 can save anything which you produce as webpages and in the HTML you can easily add things like mouse over, links, menus, and popups. Xara Designer Pro 7 has added transition effects and other nice things.</p>
<p><strong>Photo magic erase</strong> allows you to easily remove elements of a photo in a way which makes look like the element was never there. This is an example of the pixel related editing of Xara Designer Pro 7. It appears to work like similar features in other pixel based application like for instance Adobe Photoshop, but actually it is not working on the original image and you can work with it as if it was vector based changes.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0044.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The girl to the left have been ereased using Photo magic erease" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0044_thumb.png" border="0" alt="The girl to the left have been ereased using Photo magic erease" width="640" height="194" /></a></p>
<p>As you can see below the way that Xara Designer Pro 7 created the magic erase effect was in fact to slice out part of the photo and fill it with pixels making the element disappear. I have selected the slice, added a glow shadow (which can be added to <strong>any</strong> element in Xara Designer Pro 7! and is editable at <strong>any</strong> time) and applied opacity. You can then see through the sliced element and the diapered part of the original picture is again visible.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0054.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Xara Designer Pro 7 actually just adds a sliced vector element on top of the original photo to create the magic erease effect" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0054_thumb.png" border="0" alt="Xara Designer Pro 7 actually just adds a sliced vector element on top of the original photo to create the magic erease effect" width="640" height="391" /></a></p>
<h3>And a lot more…</h3>
<p>Many other things have been added especially to the HTML part of Xara Designer Pro 7. I suggest that you see the videos and press F1 (Yes, windows help – it’s okay to use it!). Locate the “What’s new in Xara Designer Pro 7?” and spend some time reading it and seeing the examples. I simply could not find the time here to mention all of them. But a short list of new features I can offer:</p>
<ul>
<li>More widgets. Facebook, Google maps,</li>
</ul>
<h3>New to Xara Designer Pro? Some advices for you…</h3>
<p>If you have not tried previous versions of Xara Designer Pro you have a lot to look forward to! Of cause there will be a learning curve, but just visit some of the many online resources – I have listed some of them below. Actually this is one of the areas where I find that Xara is taking good care of its customers – take this statement for instance:</p>
<blockquote><p><strong>From e-mail: “Information about Xara Designer Pro 7” which you receive when you have registered your Xara product.</strong></p>
<p>“Don&#8217;t miss the <a href="http://www.xara.com/eu/products/designer/tutorials-demos/">intro movies</a> on our website (or click the Movies option in the Help menu). There are over 100 movies covering features and techniques and they are a great place to start learning about Designer Pro.”</p></blockquote>
<p>Do not hesitate to ask “stupid” questions on the various <a href="http://www.talkgraphics.com/">talkgraphics.com forums</a> – we were all beginners at one time</p>
<p>Open and take a look at all the examples included in the gallery:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0064.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Many great examples can be downloaded - be inspired by them!" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0064_thumb.png" border="0" alt="Many great examples can be downloaded - be inspired by them!" width="640" height="449" /></a></p>
<p>An example is this extreme drawing, all vectors:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0074.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Find this example vector drawing and try to zoom deep (around 28000%) to view what is hiding in the drawing" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0074_thumb.png" border="0" alt="Find this example vector drawing and try to zoom deep (around 28000%) to view what is hiding in the drawing" width="342" height="480" /></a></p>
<p>Remember that <strong>any</strong> drawing you do can contain pages, layers, objects which can all be exported to various formats, including complete HTML pages, PDF files, Adobe PSD files, SVG. You can publish directly to an FTP site. You have unlimited undo/redo, auto save (backup). The undo/redo history is saved together with your document. Xara is extremely good at packing its files – I have tried to load a JPEG (from Adobe) into Xara Designer Pro and save it, leading to file size much smaller than the original JPEG file!</p>
<p>You also get a lot of “free” fonts and clipart, website templates and ready-to-use elements like buttons and navigation elements. Xara supports many color modes, from HEX to CMYK and Pantone. You can create serious <a href="http://www.netsi.dk/wordpress/index.php/tag/print/" class="st_tag internal_tag" rel="tag" title="Posts tagged with print">print</a> related output including color separation handling. You can easily use Xara Design Pro 7 as a DTP program! The advanced way you can let text flow from textboxes to textboxes and around object is so <a href="http://www.netsi.dk/wordpress/index.php/tag/cool/" class="st_tag internal_tag" rel="tag" title="Posts tagged with cool">cool</a>. And yes it works fine if you export your work into a webpage! Xara produces valid HTML and will not change your text into graphics! Oh and for us website developers: Ctrl+Shift+L will give you instant Lorem Ipsum text I love it!</p>
<blockquote><p>I know it’s nerded: but build in Lorem Ipsum is a feature well worth mentions:</p>
<p><em>Ad veniam ad minim aliquip, voluptate cupidatat. Sint ex velit in. Sunt enim pariatur sit non, dolore, ut occaecat consequat non ad non aute ullamco sed aute excepteur. Enim dolore exercitation ex nisi cupidatat culpa.</em></p></blockquote>
<p>Navigation bar builder making it very easy to construct navigations bars:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0084.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The Navigation Bar tool" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0084_thumb.png" border="0" alt="The Navigation Bar tool" width="576" height="480" /></a></p>
<p>Two panorama creating tools – the build simple and the advanced Magix PanoramaStudio 2. Here is a simple example from Aarhus, Denmark. Only 4 images were used.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0094.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The Magix PanoramaStudio 2 in action" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0094_thumb.png" border="0" alt="The Magix PanoramaStudio 2 in action" width="640" height="326" /></a></p>
<p>The Magix PanoramaStudio 2 can even generate an interactive panorama using <a href="http://www.netsi.dk/wordpress/index.php/tag/flash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with flash">Flash</a> and HTML. The above view can be seen online here: <a href="http://www.netsi.dk/xara/XDP7/panorama/AarhusDenmark.html">Aarhus, Denmark</a></p>
<p>I could go on… But visit the links below to see good tutorials!</p>
<h3>Conclusion</h3>
<p>With the release of Xara Designer Pro 7 the world’s best one-in-one graphic package have just gotten closer to being perfect! As we all know nothing is perfect, so I can’t call it perfect. There is still room for improvements, but the history tells that Xara is listening to its users, and follow trends in the world surrounding the Xara world. With internet being a very powerful media to communicate and emerging technologies like the CANVAS element of HTML5 and the powerful features of <a href="http://www.netsi.dk/wordpress/index.php/tag/css3/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css3">CSS3</a>, my guess is that Xara Designer Pro 8 when it comes will be much more focused on bringing content to the new taking into account things like <a href="http://www.netsi.dk/wordpress/index.php/tag/css3/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css3">CSS3</a> based gradients, round corners, custom fonts and transitions. The current version Xara Designer Pro 7 have put a lot of effort into this, and to Xara Designer Pro 7 super users who understand this application and all it offers like Wizards for internet the sky is the limit.</p>
<p>Every time – actually ever since my first version of Xara Designer called Artworks – I have shown people this application to my friends they have been blown away and impressed by its abilities, features, ease of use and speed. Nothing has changed there in Xara Designer Pro 7 – everything has just gotten even more smart and nice to use!</p>
<p>I think that Xara Designer Pro 7 deserves even more attention, and I would like to end where I started: I hope that Xara Designer Pro 7 like the ARM chip will get the deserved success in the years to come! I am looking forward to seeing the Xara Designer Pro run on an ARM based Windows 8, bringing the old palls together again!</p>
<p>&nbsp;</p>
<h5>Links</h5>
<ul>
<li>Download a trial version: <a href="http://www.xara.com">www.xara.com</a></li>
<li>Talkgraphics a forum for Xara users: <a href="http://www.talkgraphics.com/">http://www.talkgraphics.com/</a></li>
<li>“<a href="http://www.xara.com/eu/outsider/">The Outsider</a>” a monthly online newsletter with lots of relevant material for Xara users: Tutorials, featured artists and more.</li>
<li>“<a href="http://www.xara.com/eu/gallery/">The Xara gallery</a>” &#8211; A must visit website where you can see what can be done using Xara Designer products.</li>
<li><a href="http://support.xara.com/">Support from Xara</a> – nice to have, for users of Xara products.</li>
<li>YouTube search for Xara Designer Pro 7: <a href="http://goo.gl/xsTZV">http://goo.gl/xsTZV</a></li>
<li>Xara Group on twitter: <a href="http://twitter.com/#!/xaragroup">http://twitter.com/#!/xaragroup</a></li>
<li>Xara trove: <a href="http://xhris.digitalred.net/index.htm">http://xhris.digitalred.net/index.htm</a> – a great resource for Xara related stuff</li>
<li>Xara software on Facebook: <a href="https://www.facebook.com/pages/Xara/63703226328">https://www.facebook.com/pages/Xara/63703226328</a></li>
<li><a href="http://www.xaraxone.com/">The Xara Xone</a> &#8211; The Xara Xone contains a lot of very useful help, guides and tutorials</li>
<li>An example of a website made using Xara Designer Pro 7:<a title="You find a lot of resources needed to create a website on this site created using Xara Designer 7" href="http://newbie2webdesigner.com/"> http://newbie2webdesigner.com/</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F06%2F26%2Fintroducing-xara-designer-pro-7-all-you-need-to-work-with-graphics%2F&amp;title=Introducing%20%26ldquo%3BXara%20Designer%20Pro%207%26rdquo%3B%2C%20all%20you%20need%20to%20work%20with%20graphics%21" id="wpa2a_10"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/06/26/introducing-xara-designer-pro-7-all-you-need-to-work-with-graphics/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Add CSS 3 intellisense to Visual Studio 2010</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/04/03/add-css-3-intellisense-to-visual-studio-2010/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/04/03/add-css-3-intellisense-to-visual-studio-2010/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 15:50:28 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[intellisense]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/04/03/add-css-3-intellisense-to-visual-studio-2010/</guid>
		<description><![CDATA[As CSS 3 is spreading out the editors should also start supporting it with things like validation and intellisence. In Visual Studio 2010 it the same thing as it is schema based in its approach. What this means – in short – is that you define rules in a XML based schema, a XSD. XSDs [...]]]></description>
			<content:encoded><![CDATA[<p>As <a href="http://www.netsi.dk/wordpress/index.php/tag/css-3/" class="st_tag internal_tag" rel="tag" title="Posts tagged with CSS 3">CSS 3</a> is spreading out the editors should also start supporting it with things like validation and intellisence. In <a href="http://www.netsi.dk/wordpress/index.php/tag/visual-studio-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Visual Studio 2010">Visual Studio 2010</a> it the same thing as it is schema based in its approach. What this means – in short – is that you define rules in a XML based schema, a XSD. XSDs are very flexible but not very userfreindly to compose (unless you use a smart tool like for instance <a href="http://www.netsi.dk/wordpress/index.php/tag/visual-studio-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Visual Studio 2010">Visual Studio 2010</a>).</p>
<p>Anyway I googled and found a MSI file which containes a <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a> 3 XSD file. The MSI will do most of the job installing the <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a> 3 schema, but will ufortuanally install it perfectly. In the Q&amp;A on the site however I found a simpel regedit fix, which helps. I have saved the regex for you so you can simply download it and double click it to make the <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a> 3 a choice in Visual Studio when editing <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a>.</p>
<blockquote><h4>Downloads</h4>
<ul>
<li><a href="http://visualstudiogallery.msdn.microsoft.com/7211bcac-091b-4a32-be2d-e797be0db210">CSS 3 Intellisense Schema</a> add in for Visual Studio 2010 </li>
<li><a href="http://dl.dropbox.com/u/3260327/css3InVisualStudio2010_x86.reg">Reged database entry file</a> </li>
</ul>
</blockquote>
<h5>In use</h5>
<p>When you runned the MSI and added the new keys to the reged database you may want to restart any running Visual Studio 2010 instances. After restart you will have a new choice in the dropdown box “Cascading Style Sheet Version for validation”:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/04/image.png" rel="lightbox[575]"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Select CSS 3 validation and intellisence in Visual Studio 2010" border="0" alt="Select CSS 3 validation and intellisence in Visual Studio 2010" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/04/image_thumb.png" width="480" height="193" /></a></p>
<p>The defined parts of CSS 3 is <strong>not complete</strong> in this CSS 3 Schema. For instance defining colors in <code>hsla</code> <a href="http://www.netsi.dk/wordpress/index.php/tag/color/" class="st_tag internal_tag" rel="tag" title="Posts tagged with color">color</a> space is considered invalid which is not true for CSS 3.I hope that updates for the Schema made by <a href="http://social.msdn.microsoft.com/profile/mojtaba.kaviani/" target="_blank">Mojtaba kaviani</a> will be more complete soon. But great job Mojtaba! </p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F04%2F03%2Fadd-css-3-intellisense-to-visual-studio-2010%2F&amp;title=Add%20CSS%203%20intellisense%20to%20Visual%20Studio%202010" id="wpa2a_12"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/04/03/add-css-3-intellisense-to-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improvements in Microsoft Visual Studio 2010, from a frontend webdevelopers point of view, part 1: javascript</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/09/22/improvements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/09/22/improvements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 21:48:39 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[XSLT]]></category>
		<category><![CDATA[intellisense]]></category>
		<category><![CDATA[Microsoft Visual studio 2010]]></category>
		<category><![CDATA[xml commenta]]></category>
		<category><![CDATA[xml documentation]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/09/22/improvements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript/</guid>
		<description><![CDATA[Sometimes I have wondered just what the h**l they were thinking over at Microsoft: their flagship development tool just didn’t perform and deliver what you would expect from a tool of that caliber. That was before the Microsoft Visual Studio 2010 (VS 2010)! I will try to write about features in VS 2010 which makes [...]]]></description>
			<content:encoded><![CDATA[<p><em>Sometimes I have wondered just what the h**l they were thinking over at Microsoft: their flagship development tool just didn’t perform and deliver what you would expect from a tool of that caliber. That was before the Microsoft <a href="http://www.netsi.dk/wordpress/index.php/tag/visual-studio-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Visual Studio 2010">Visual Studio 2010</a> (VS 2010)! I will try to write about features in VS 2010 which makes me happy as a frontend web developer, hoping that you will gain something from it – and please do comment and share your experiences.</em></p>
<h1>The background: What I missed…</h1>
<p>I have during my 15 years career as web developer tried various development tools, and have touched the “backend” development side of web applications also. It seems that many rich development tools focus on the heavier backend development part of web application development with things like <a href="http://www.netsi.dk/wordpress/index.php/tag/intellisense/" class="st_tag internal_tag" rel="tag" title="Posts tagged with intellisense">intellisense</a>, snippets and so on. I have often wondered: Why should it be so difficult and not possible – especially in VS – to automate things, processes which is done many times every day? Rich development tools RDTs should support the “web craftsmen” trying to produce quality work. In real life “real” tools for craftsmen like a carpenter have evolved. Quality tools make the fundament for quality work! Anyway, we might just have got a piece of quality tool in VS 2010!</p>
<h2>The new features &#8211; <a href="http://www.netsi.dk/wordpress/index.php/tag/javascript/" class="st_tag internal_tag" rel="tag" title="Posts tagged with javascript">javascript</a></h2>
<p>In this part I focus on javascript in VS 2010.</p>
<h3>Javascript intellicence</h3>
<p><strong>jQuery embedded from local “standard” API javascript file.</strong> </p>
<p>It is near perfect now! The intellisense engine in VS 2010 seems to “think” nearly perfect. Say you want to use jQuery. If you include your jQuery API using a local version, you <em>will</em> get <strong>basic</strong> intellisense – that is objects inside the jQuery API will appear as you start typing. You will get <em>relevant</em> methods shown together with basic information about which parameters you can use. Okay, but it gets better!<br />
<h4>Microsoft minimised version of jQuery still has intellisence</h4>
</p>
<p>jQuery embedded from Microsoft at: <a title="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js" href="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js" target="_blank">http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js</a> <br />Using the MS CDN to get even a <strong>minified version</strong> of jQuery, you <strong>still</strong> get extensive intellisence!<a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image9.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" align="absMiddle" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb9.png" width="640" height="79"/></a> </p>
<blockquote><p>Note: <br />After you have added any external script file you can <em>update the javascript intellisense</em> using <code>[Shift]+[Ctrl]+J</code>. For big APIs like jQuery this might take perhaps 20 seconds.</p>
</p>
</blockquote>
<h4>jQuery plug-ins handled as well in intelisence</h4>
<p>Extra jQuery plug-ins added will also get intellisense, as expected, but also at the correct place <br />below you can see that I have added a script reference to the <a title="jQuery Cycle plug-in homepage" href="http://jquery.malsup.com/cycle/" target="_blank">jQuery Cycle plug-in</a> for jQuery. The “cycle” method now exists after I have used a jQuery selector $(‘#test’). The description of the method “cycle” however is not very useful – but that is because that the jquery.cycle.all.min.js file <strong>does not contain JavaScript documentation</strong> (more about that later). </p>
<p>If you think about it – VS 2010 is quit smart! It scans the cycle <a href="http://www.netsi.dk/wordpress/index.php/tag/plug-in/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plug-in">plug-in</a> and sees that it <strong>extends</strong> the jQuery API. That is how it can figure out – I guess – that the cycle method fits in as a method on a found elements of the “$” (or jQuery) method. Nice feature! </p>
<p>&nbsp; </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image10.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="The intellisence works perfect" border="0" alt="The intellisence works perfect" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb10.png" width="554" height="315"/></a> </p>
<h4>Dropdown filelist simplified</h4>
<p>Automatic dropdown file list when adding <a href="http://www.netsi.dk/wordpress/index.php/tag/html/" class="st_tag internal_tag" rel="tag" title="Posts tagged with html">HTML</a> code like “script”. Previously you had to click the “Pick URL…” and then point to the file which you wanted to use in your <a href="http://www.netsi.dk/wordpress/index.php/tag/html/" class="st_tag internal_tag" rel="tag" title="Posts tagged with html">HTML</a> document. Now you simply click on the file, if it is located at the same place as the current document. Nice. </p>
<p>&nbsp; </p>
<p>”<a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image11.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Dropdown filelist simplified" border="0" alt="Dropdown filelist simplified" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb11.png" width="566" height="214"/></a></p>
<h4>Snippets – finally!!</h4>
<p>I have written about snippets in Visual Studio in a previous post: <a title="Find Visual Studio Snippets ready for download on my DropBox folder" href="http://www.netsi.dk/wordpress/index.php/2010/08/05/find-visual-studio-snippets-ready-for-download-on-my-dropbox-folder/" target="_blank">Find Visual Studio Snippets ready for download on my DropBox folder</a>, but it is first in VS 2010 that it is actually possible to execute snippets in HTML mode! (Why, why, why?). Anyway you can now! And VS 2010 comes with a few snippets installed. </p>
<p><strong>Snippet types “Surround with” and “Insert snippet” </strong><b><br /></b>If you do not know <a href="http://www.netsi.dk/wordpress/index.php/tag/how-to/" class="st_tag internal_tag" rel="tag" title="Posts tagged with how to">how to</a> activate them try the “<em>surround with snippet</em>” by pressing <code>[Ctrl]-K, [Ctrl]-S</code>. By doing that you get the chance to automate things like creating a JavaScript function using just two keyboard clicks and a mouse click. The Insert snippet can be archived using <code>[Ctrl]-K, [Ctrl]-X</code>. And remember: You can always create your own! </p>
</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image12.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Using the surround with snippet" border="0" alt="Using the surround with snippet" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb12.png" width="547" height="262"/></a> </p>
<p>Just discovered that in fact Microsoft has not made it possibel to use snippets within <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a>… Why, why, why???</p>
<h4>Intellisence will execute your code dynamically to give better suggestions</h4>
<p>Say you define a string “effect” and assign it a <em>string</em> value. This will make VS 2010 execute the assignment and then “guess” that your variable is of the type String. So at a late point in your code you try to use the variable, <strong>the suggestions given by intellisense</strong> will be <strong>relevant</strong> to that type (string). Look at the example below. To the left a variable “effect” and to the right an “int”, the suggestions are not the same. Smart! and you can do some pretty nice things when your code is dynamically executed – try visiting the <a title="JavaScript Intellisense Improvements with VS 2010 - on ScottGu's Blog" href="http://weblogs.asp.net/scottgu/archive/2010/04/08/javascript-intellisense-improvements-with-vs-2010.aspx" target="_blank">JavaScript Intellisense Improvements with VS 2010 &#8211; on ScottGu&#8217;s Blog</a> and have a look at those examples.  </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image13.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Intelligence sugestions are related to the type of your variable..." border="0" alt="Intelligence sugestions are related to the type of your variable..." src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb13.png" width="640" height="212"/></a></p>
<h4>Your own intellisence using XML comments! </h4>
<p>Now there is no excuse why you do not document your JavaScript code! VS 2010 offers <strong>easy</strong> documentation using <strong>snippets and XML comments!</strong> It is so easy, simply press <code>[Ctrl]+K, [Ctrl]+X</code>, choose “XML Comments” and what type of comment you want to insert. After having done and (of cause) filling out the marked fields, <strong>your</strong> code will be providing <strong>intellisense</strong> and <strong>suggestions</strong> when other people use it! <strong><a href="http://www.netsi.dk/wordpress/index.php/tag/cool/" class="st_tag internal_tag" rel="tag" title="Posts tagged with cool">Cool</a>!</strong> </p>
<p>You can see below a simple function called “myhide”, The 3 lines below the function have been inserted using the above mentioned XML comments snippet. I defined a summary, a return definition and a param description. Voila! My function now has intellisense and build in help – which will without doubt be useful for me and others at a later state. You can make this part quit advanced with references to documentation files, assemblies and more.  </p>
</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image14.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Here goes your excuse for not documenting your javascript code anymore! XML Comments in javascript." border="0" alt="Here goes your excuse for not documenting your javascript code anymore! XML Comments in javascript." src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb14.png" width="640" height="351"/></a> </p>
<p>&nbsp;</p>
<h4>Various small changes</h4>
<ul>
<li>You can zoom the work area as you can in your browser. Just hold down <code>[Ctrl]</code>while rolling the wheel of you mouse up and down. Guess that woud be nice for elderly people like me <img src='http://www.netsi.dk/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   </li>
<li>All these improvements also apply to the <strong>free</strong> <a title="Go to this url to start installing the Visual Web Developer 2010 Express" href="http://www.microsoft.com/web/gallery/install.aspx?appid=VWD2010" target="_blank">Visual Web Developer 2010 Express</a>! </li>
</ul>
<p>&nbsp;</p>
</p>
<h5>Links</h5>
<ul>
<li><a title="JavaScript Intellisense Improvements with VS 2010 - on ScottGu's Blog" href="http://weblogs.asp.net/scottgu/archive/2010/04/08/javascript-intellisense-improvements-with-vs-2010.aspx" target="_blank">JavaScript Intellisense Improvements with VS 2010 &#8211; on ScottGu&#8217;s Blog</a>  </li>
<li><a title="VS 2010 and .NET 4 Series - on ScottGu's Blog" href="http://weblogs.asp.net/scottgu/archive/2009/08/25/vs-2010-and-net-4-series.aspx" target="_blank">VS 2010 and .NET 4 Series &#8211; on ScottGu&#8217;s Blog</a> </li>
</ul>
<pre></pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2010%2F09%2F22%2Fimprovements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript%2F&amp;title=Improvements%20in%20Microsoft%20Visual%20Studio%202010%2C%20from%20a%20frontend%20webdevelopers%20point%20of%20view%2C%20part%201%3A%20javascript" id="wpa2a_14"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/09/22/improvements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using jQuery UI, is it easy?</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/02/21/using-jquery-ui-is-it-easy/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/02/21/using-jquery-ui-is-it-easy/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 11:10:33 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Is it easy?]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery UI]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/02/21/using-jquery-ui-is-it-easy/</guid>
		<description><![CDATA[The javascript API jQuery is a very powerfull libray which have revolutionised the use of clientside javascript in browsers. Along the side of jQuery exists jQuery UI a library of strongly customizable widgets. It offers a wide range of &#34;easy-to-implement&#34; widgets for your website. I will try in this post to implement a datepicker and [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.netsi.dk/wordpress/index.php/tag/javascript/" class="st_tag internal_tag" rel="tag" title="Posts tagged with javascript">javascript</a> API jQuery is a <strong>very</strong> powerfull libray which have revolutionised the use of clientside javascript in browsers. Along the side of jQuery exists <strong><a href="http://www.netsi.dk/wordpress/index.php/tag/jquery-ui/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jQuery UI">jQuery UI</a></strong> a library of strongly customizable widgets. It offers a wide range of &quot;easy-to-implement&quot; widgets for your website. I will try in this post to implement a <code>datepicker</code> and conclude in the end if it is easy!
<p>Read <a title="Read the article [Using jQuery UI, is it easy]" href="http://www.netsi.dk/showcases/jQuery_UI.html" target="_blank">the article</a> and post your comments here on this page.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2010%2F02%2F21%2Fusing-jquery-ui-is-it-easy%2F&amp;title=Using%20jQuery%20UI%2C%20is%20it%20easy%3F" id="wpa2a_16"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/02/21/using-jquery-ui-is-it-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work-arounds for 9 MSIE bugs&#8230;</title>
		<link>http://www.netsi.dk/wordpress/index.php/2009/11/26/work-arounds-for-9-msie-bugs/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2009/11/26/work-arounds-for-9-msie-bugs/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 07:37:29 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[MSIE]]></category>
		<category><![CDATA[work-around]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2009/11/26/work-arounds-for-9-msie-bugs/</guid>
		<description><![CDATA[If you implement layout on the web, chances are that you have to make som MSIE work-arounds from time to time. The page “9 Most Common IE Bugs and How to Fix Them” is a great resource for avoiding such bugs to mess up your layout. Here is an example from the website: The output [...]]]></description>
			<content:encoded><![CDATA[<p>If you implement <a href="http://www.netsi.dk/wordpress/index.php/tag/layout/" class="st_tag internal_tag" rel="tag" title="Posts tagged with layout">layout</a> on the web, chances are that you have to make som <a href="http://www.netsi.dk/wordpress/index.php/tag/msie/" class="st_tag internal_tag" rel="tag" title="Posts tagged with MSIE">MSIE</a> work-arounds from time to time. The page “<a title="A page containing work-acrounds for 9 common MSIE bugs" href="http://net.tutsplus.com/tutorials/html-css-techniques/9-most-common-ie-bugs-and-how-to-fix-them/" target="_blank">9 Most Common IE Bugs and How to Fix Them</a>” is a great resource for avoiding such bugs to mess up your layout.</p>
<p>Here is an example from the website:</p>
<p>The output you&#8217;d expect:</p>
<p><img border="0" alt="Tutorial Image" src="http://nettuts.s3.amazonaws.com/494_ie/images/1-1.png" /></p>
<p>But what IE actually gives you:</p>
<p><img border="0" alt="Tutorial Image" src="http://nettuts.s3.amazonaws.com/494_ie/images/1-2.png" /></p>
<p>This is mainly due to IE6 in quirks mode and below not recognizing the <em>auto</em> value we set to the <em>margin</em> property. Fortunately, this is easily fixed.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2009%2F11%2F26%2Fwork-arounds-for-9-msie-bugs%2F&amp;title=Work-arounds%20for%209%20MSIE%20bugs%26hellip%3B" id="wpa2a_18"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2009/11/26/work-arounds-for-9-msie-bugs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A very usefull CSS framework</title>
		<link>http://www.netsi.dk/wordpress/index.php/2009/08/03/a-very-usefull-css-framework/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2009/08/03/a-very-usefull-css-framework/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 21:12:28 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[inspirovation]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[css framework]]></category>
		<category><![CDATA[yahoo]]></category>
		<category><![CDATA[yui grids css]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/?p=73</guid>
		<description><![CDATA[I am in the search of a CSS framework which will make it more standard to implement designs and add more resusability to the work put in creating CSS based designs. The issue arose when a collegue of mine – Nickey – started a talk about CSS frameworks. I started from the top of the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2009/08/image.png" rel="lightbox[73]"><img border="0" src="http://www.netsi.dk/wordpress/wp-content/uploads/2009/08/image-thumb.png" alt="image" style="margin: 5px 20px 0px 0px; display: inline; border: 0px" align="left" title="image" height="147" width="240" /></a> I am in the search of a <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a> framework which will make it more standard to implement designs and add more resusability to the work put in creating <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a> based designs. The issue arose when a collegue of mine – <a target="_blank" href="http://www.new.facebook.com/sten.hougaard?ref=profile#/profile.php?id=659654229&amp;ref=nf">Nickey</a> – started a talk about <a target="_blank" href="http://speckyboy.com/2008/03/28/top-12-css-frameworks-and-how-to-understand-them/">CSS frameworks</a>.</p>
<p>I started from the top of the 12 mentioned frameworks and until now I have reached number 4 – which is <a href="http://developer.yahoo.com/yui/grids/" title="YUI Grids CSS">YUI Grids CSS</a> from <a href="http://www.yahoo.com/" title="Yahoo">Yahoo</a>. It is a big thing so I just jumped directly to their online tool to autogenerate CSS for generic layouts. It is called “<a target="_blank" href="http://developer.yahoo.com/yui/grids/builder/">CSS Grid Builder</a>”, and I must say that my first hand impression is one of respect! It is an impressive piece of work. See my very simple <a target="_blank" href="http://www.netsi.dk/arbejde/cssframework01.html" title="Remember: Testing, testing - 1 2 3 - testing! :-)">1st test</a>.</p>
<p>I will be trying out other frameworks, but for sure will also try to use the framework from <a href="http://www.netsi.dk/wordpress/index.php/tag/yahoo/" class="st_tag internal_tag" rel="tag" title="Posts tagged with yahoo">Yahoo</a> in practice!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2009%2F08%2F03%2Fa-very-usefull-css-framework%2F&amp;title=A%20very%20usefull%20CSS%20framework" id="wpa2a_20"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2009/08/03/a-very-usefull-css-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

