<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Saffron Stroke - Your Web Design Resource &#187; XHTML</title>
	<atom:link href="http://www.saffronstroke.com/tag/XHTML/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.saffronstroke.com</link>
	<description>Design Blog</description>
	<lastBuildDate>Wed, 11 Jan 2012 06:36:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Universal Selector in CSS2</title>
		<link>http://www.saffronstroke.com/2009/08/14/universal-selector-in-css2/</link>
		<comments>http://www.saffronstroke.com/2009/08/14/universal-selector-in-css2/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 13:39:18 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[CSS Hacks, Tips and Tricks]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS tips]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[selector]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[universal selector]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.com/?p=635</guid>
		<description><![CDATA[CSS2 had introduced a new selector, the universal selector to match any element in your page. The selector is indicated as an asterisk &#8216;*&#8217;. The universal selector could be used to list every element in your page. For example, * {font-size: 12px} This declaration would set the font size of all the elements used in [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/08/14/universal-selector-in-css2/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F08%2F14%2Funiversal-selector-in-css2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F08%2F14%2Funiversal-selector-in-css2%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>CSS2 had introduced a new selector, the universal selector to match any element in your page. The selector is indicated as an asterisk &#8216;*&#8217;. The universal selector could be used to list every element in your page.<br />
For example,</p>
<p>* {font-size: 12px}</p>
<p>This declaration would set the font size of all the elements used in your document to 12px.</p>
<p>NOTE: Even though the universal selector is one handy option, consider the specificity of other selectors for it to work properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/08/14/universal-selector-in-css2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Element Selectors in CSS</title>
		<link>http://www.saffronstroke.com/2009/07/20/element-selectors-cs/</link>
		<comments>http://www.saffronstroke.com/2009/07/20/element-selectors-cs/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 06:52:50 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[CSS Hacks, Tips and Tricks]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS tips]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[element]]></category>
		<category><![CDATA[grouping selectors]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[selectors]]></category>
		<category><![CDATA[techniques]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.com/?p=597</guid>
		<description><![CDATA[Why is CSS preferred by all the designers? Well that is because of its ability to separate presentation from the content and most importantly its power to edit the document style by changing a single line of code. Don&#8217;t believe me? Find it yourself! An element selector is an HTML element. There are other types [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/07/20/element-selectors-cs/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F07%2F20%2Felement-selectors-cs%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F07%2F20%2Felement-selectors-cs%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Why is CSS preferred by all the designers? Well that is because of its ability to separate presentation from the content and most importantly its power to edit the document style by changing a single line of code. Don&#8217;t believe me? Find it yourself!</p>
<p>An element selector is an HTML element. There are other types of selectors too, which we will explore later. So the element selectors are the most basic selectors in your document structure. html, body, p, div, span, headings, etc are all different types of element selectors of a document. We can apply certain rules to them to stylize these selectors. For example, if we want all the paragraphs to be displayed in red color, we can do that by;</p>
<p>p { color: red}</p>
<p>Or if we want the heading 2 to appear with a gray background;</p>
<p>h2 { background-color: gray}</p>
<p><strong>Grouping multiple declarations</strong></p>
<p>We saw how to apply a single declaration to an element selector. But you can have multiple declarations in the same rule. See this example:</p>
<p>p { color: red; background-color: gray;}</p>
<p>In this rule, we have combined two declarations; (i) the font-color in all paragraphs to be red (ii) background color of all paragraphs to be gray. Semicolon is used as a separator between these declarations. If you notice, the last declaration is also followed by a semicolon. It is rather important to do so since browsers ignore the whitespaces in the style sheet. To make this clear see following example:</p>
<p>p { color: red; background-color: gray font-size: 10px; }</p>
<p>Since there is no ‘;’ after the value ‘gray’ for background-color, browsers check if the property has multiple values. But since font-size is not a valid value and background-color does not take multiple values, both the properties will be ignored. But note that the last declaration of the group need not end with a semicolon. For instance;</p>
<p>p { color: red; background-color: gray}</p>
<p>This will work absolutely fine in most of the browsers. But at a later stage, if you want to add some more declarations to the group, you must add a semicolon after this declaration, else it would ignored as shown in above example.</p>
<p><strong>Grouping Element Selectors</strong></p>
<p>We saw techniques to apply one or more styles to a single selector. But what if, you want to apply same style to more than one element selector. For instance, if you want heading 2 and paragraph both to be in red. It would be stupid of us if we write the same style for another element. There is a better way to do that;</p>
<p>h2, p { color: red}</p>
<p>In this example, we are using a comma to group two selectors, viz. &#8216;h3&#8242; and &#8216;p’. Similarly you can group multiple selectors. This way you generate fewer lines of styles in your style sheet which in turn makes it easier for you to find out selectors and styles at a later stage when your style sheet has numerous rules defined in it.</p>
<p><strong>Grouping multiple declarations with multiple selectors</strong></p>
<p>By now we grouped multiple declarations for a single selector and we also grouped multiple selectors with a single declaration. Now it’s turn to group multiple declarations, with multiple selectors. Confusing enough isn&#8217;t it! Well this example would make it clear;</p>
<p>h2, p {</p>
<p>                color: red;</p>
<p>                background-color: gray;</p>
<p>                font-size: 10px;</p>
<p>}</p>
<p>These were some powerful and effective techniques of CSS. We will learn more in our coming articles, but for now I hope you enjoyed reading this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/07/20/element-selectors-cs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Classification of elements in CSS</title>
		<link>http://www.saffronstroke.com/2009/06/29/classification-of-elements-in-css/</link>
		<comments>http://www.saffronstroke.com/2009/06/29/classification-of-elements-in-css/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 09:17:30 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[CSS Hacks, Tips and Tricks]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS 2.1]]></category>
		<category><![CDATA[CSS elements]]></category>
		<category><![CDATA[elements]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.com/?p=563</guid>
		<description><![CDATA[A document is structured by it elements. The HTML elements that we commonly know are p, div, table, headings, span and many more. In CSS (2.1) each element has its own box that contains the element’s content. Hence these elements are broadly classified as: Replaced and Non-replaced elements Block-level and Inline elements This classification is [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/06/29/classification-of-elements-in-css/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F06%2F29%2Fclassification-of-elements-in-css%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F06%2F29%2Fclassification-of-elements-in-css%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>A document is structured by it elements. The HTML elements that we commonly know are p, div, table, headings, span and many more. In CSS (2.1) each element has its own box that contains the element’s content. Hence these elements are broadly classified as:</p>
<ul>
<li>Replaced and Non-replaced elements</li>
<li>Block-level and Inline elements</li>
</ul>
<p>This classification is made on the basis of their nature of presentation.</p>
<p><strong>1.       </strong><strong>Replaced elements:</strong></p>
<p>Replaced elements are those where the content of the element is replaced with some content external to that document. For example, the ‘img’ element has no content of its own. It takes the path to the file that needs to be displayed in the box created by the element.</p>
<p><strong>2.       </strong><strong>Non-replaced elements: </strong></p>
<p>All other elements are non-replaced elements. For instance, the ‘p’ (paragraph) element;</p>
<p>&lt;p&gt;Some text &lt;/p&gt;</p>
<p>Other non-replaced elements are div, span, headings, lists, tables, etc.</p>
<p><strong>3.       </strong><strong>Block-level elements:</strong></p>
<p>As the name suggests create a box for their content. It creates a space of its own and adds breaks before and after its box. Examples of Block level elements are ‘p’ and ‘div’.</p>
<p>Lists are also block-level elements. But unlike other block elements, lists have their own set of presentation properties in addition to those inherited from block-level elements. These properties include indentation and bullets (for unordered lists) and numbers (for ordered lists).</p>
<p><strong>4.       </strong><strong>Inline-level elements:</strong></p>
<p>Inline elements spawn an element box within the line of text and do not break the flow of the line. In other words they do not break from rest of the display. The most used inline element is ‘span’. Other examples are ‘a’, ‘strong’.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/06/29/classification-of-elements-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Books you must have if you want to develop professional websites using Microsoft Expression Web</title>
		<link>http://www.saffronstroke.com/2009/06/13/2-books-you-must-have-microsoft-expression-web/</link>
		<comments>http://www.saffronstroke.com/2009/06/13/2-books-you-must-have-microsoft-expression-web/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 18:00:47 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[best books for Expression Web]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[Expression Web 2]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[top books for Expression Web]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.com/?p=544</guid>
		<description><![CDATA[Microsoft Expression Web 2 Step by Step (Step By Step (Microsoft)) by Chris Leeds The book has easy steps, hands-on exercises and practice files. It is a step by step guide to beginners and intermediate users. Learn at your own pace and create professional web sites with advanced design techniques and tools to incorporate XML, XHTML, [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/06/13/2-books-you-must-have-microsoft-expression-web/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F06%2F13%2F2-books-you-must-have-microsoft-expression-web%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F06%2F13%2F2-books-you-must-have-microsoft-expression-web%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="Microsoft Expression Web 2 Step by Step (Step By Step (Microsoft))" href="http://www.amazon.com/gp/product/0735626111?ie=UTF8&amp;tag=dotcomandsqlc-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0735626111"><strong>Microsoft Expression Web 2 Step by Step (Step By Step (Microsoft))</strong></a> by Chris Leeds<img src="http://www.assoc-amazon.com/e/ir?t=dotcomandsqlc-20&amp;l=as2&amp;o=1&amp;a=0735626111" width="1" height="1" border="0" alt="" style="border:none!important;margin:0!important;" /></p>
<p>The book has easy steps, hands-on exercises and practice files. It is a step by step guide to beginners and intermediate users. Learn at your own pace and create professional web sites with advanced design techniques and tools to incorporate XML, XHTML, ASP.NET, Silverlight, Media and much more into your website.</p>
<p><a title="Special Edition Using Microsoft Expression Web 2" href="http://www.amazon.com/gp/product/0789737841?ie=UTF8&amp;tag=dotcomandsqlc-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0789737841"><strong>Special Edition Using Microsoft Expression Web 2</strong></a>  by Jim Cheshire <img src="http://www.assoc-amazon.com/e/ir?t=dotcomandsqlc-20&amp;l=as2&amp;o=1&amp;a=0789737841" width="1" height="1" border="0" alt="" style="border:none!important;margin:0!important;" /></p>
<p>As the cover states &#8220;The ONLY EW2 book you need&#8221; it is indeed one of the best books you could have. The book is comprehensive of basic features and powerful tools including CSS tools of Expression Web 2 and advanced features like ASP.NET and PHP development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/06/13/2-books-you-must-have-microsoft-expression-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Float an image and wrap text around it in Microsoft Expression Web</title>
		<link>http://www.saffronstroke.com/2009/04/28/float-an-image-and-wrap-text-around-it-in-microsoft-expression-web/</link>
		<comments>http://www.saffronstroke.com/2009/04/28/float-an-image-and-wrap-text-around-it-in-microsoft-expression-web/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 16:30:00 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[Expression]]></category>
		<category><![CDATA[Expression Suite]]></category>
		<category><![CDATA[Expression Web 2]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[float image]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[wrap text]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.com/?p=469</guid>
		<description><![CDATA[CSS property float is used to position (float) a block level element within another element. You can float block level elements like divisions &#60;div&#62;, paragraphs &#60;p&#62;, images &#60;img /&#62; and lists &#60;ul&#62; to left or right of the page. Float is widely used to align image and wrap text around it in a same container. [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/04/28/float-an-image-and-wrap-text-around-it-in-microsoft-expression-web/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F28%2Ffloat-an-image-and-wrap-text-around-it-in-microsoft-expression-web%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F28%2Ffloat-an-image-and-wrap-text-around-it-in-microsoft-expression-web%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">CSS property <strong>float</strong> is used to position (float) a block level element within another element. You can float block level elements like divisions &lt;div&gt;, paragraphs &lt;p&gt;, images &lt;img /&gt; and lists &lt;ul&gt; to left or right of the page. Float is widely used to align image and wrap text around it in a same container. Let us see how.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><strong><span style="font-size:small;"><span style="font-family:Calibri;">Float an image to the left in a paragraph and wrap text around it</span></span></strong></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Set a style for the image by creating a New Style in Apply/Manage Styles task pane. In the New Style dialog box given below; choose <strong>Layout</strong> and set <strong>float: left</strong>.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"> <span style="font-size:small;font-family:Calibri;"><img class="alignnone size-full wp-image-470" title="img_style" src="http://www.saffronstroke.com/wp-content/uploads/2009/04/img_style.jpg" alt="img_style" width="433" height="415" /></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Then in<strong> Box</strong> category, set margins as top: 5px, right: 10px, bottom: 5px and left: 0px. Also set a border for the image in <strong>Border</strong> category. Click on OK to generate below mentioned style;</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">&lt;style type=&#8221;text/css&#8221;&gt;</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">img{</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;"><span style="font-family:Calibri;"><span>                </span>float: left;</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;"><span style="font-family:Calibri;"><span>                </span>margin:5px 10px 5px 0px;</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;"><span style="font-family:Calibri;"><span>                </span>border: thin black dotted;</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">}</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">&lt;/style&gt;</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">In the main body of the page, add a paragraph, enter the text and embed the image into it. Go to the Design view and type in the text. To insert the image, go to Insert menu &gt; Picture &gt; From File… Then browse to the path of the image and click on Insert. In the Code view the code looks as follows:</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">&lt;body&gt;</span></p>
<p class="MsoNormal" style="padding-left:30px;margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">       </span><span style="font-size:small;font-family:Calibri;">&lt;p&gt;</span></p>
<p class="MsoNormal" style="padding-left:30px;margin:0 0 10pt .5in;"><span style="font-size:small;"><span style="font-family:Calibri;">Lorem ipsum dolor sit amet, consectetur adipisicing elit, </span></span><span style="font-size:small;"><span style="font-family:Calibri;">sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </span></span></p>
<p class="MsoNormal" style="padding-left:30px;margin:0 0 10pt .5in;"><span style="font-size:small;"><span style="font-family:Calibri;">&lt;img src=&#8221;arrow_right_green.png&#8221; style=&#8221;float:left&#8221;/&gt;</span></span></p>
<p class="MsoNormal" style="padding-left:30px;margin:0 0 10pt .5in;"><span style="font-size:small;"><span style="font-family:Calibri;">Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris </span></span><span style="font-size:small;"><span style="font-family:Calibri;"><span> </span>nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in </span></span><span style="font-size:small;"><span style="font-family:Calibri;">reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </span></span><span style="font-size:small;"><span style="font-family:Calibri;">Excepteur sint occaecat cupidatat non proident, </span></span><span style="font-size:small;"><span style="font-family:Calibri;">sunt in culpa qui officia deserunt mollit anim id est laborum. <span> </span></span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt .5in;"><span style="font-size:small;"><span style="font-family:Calibri;"></span></span><span style="font-size:small;font-family:Calibri;">&lt;/p&gt;</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">&lt;/body&gt;</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">&lt;/html&gt;</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Save the file and preview it in the browser. The output will be as follows:</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><img class="alignnone size-full wp-image-471" title="output" src="http://www.saffronstroke.com/wp-content/uploads/2009/04/output.jpg" alt="output" width="460" height="128" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/04/28/float-an-image-and-wrap-text-around-it-in-microsoft-expression-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Difference between &#039;em&#039; and &#039;ex&#039; units</title>
		<link>http://www.saffronstroke.com/2009/04/25/difference-between-em-and-ex-units/</link>
		<comments>http://www.saffronstroke.com/2009/04/25/difference-between-em-and-ex-units/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 12:54:59 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[em]]></category>
		<category><![CDATA[ex]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[relative units]]></category>
		<category><![CDATA[relative values]]></category>
		<category><![CDATA[units]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.com/?p=463</guid>
		<description><![CDATA[‘em’ and ‘ex’ units are both relative units; viz. they are measured in relation to other values. In CSS, one &#8216;em&#8217; is defined to be the value of font-size of a given element. For example, if the font-size of a paragraph element is 12 pixels then 1em = 12 px. But as I already mentioned [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/04/25/difference-between-em-and-ex-units/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F25%2Fdifference-between-em-and-ex-units%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F25%2Fdifference-between-em-and-ex-units%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">‘em’ and ‘ex’ units are both relative units; viz. they are measured in relation to other values. </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">In CSS, one &#8216;em&#8217; is defined to be the value of font-size of a given element. For example, if the font-size of a paragraph element is 12 pixels then 1em = 12 px.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">But as I already mentioned &#8216;em&#8217; value depends on the element with which it is used. Consider following example.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">p {font-size: 12px; padding-left: 1em;}</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">h1 {font-size: 22px; padding-left: 1em;}</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">The output would be:</span> </p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;"><img class="alignnone size-full wp-image-464" title="em_padding" src="http://www.saffronstroke.com/wp-content/uploads/2009/04/em_padding.jpg" alt="em_padding" width="399" height="78" /></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">This is because; the value of &#8216;em&#8217; is relative to its parent. So the left padding for the paragraph was 12px whereas left padding for Heading 1 was 22px. </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">&#8216;ex&#8217; on the other hand refers to the height of the lowercase letter &#8216;x&#8217; in the font that is assigned for a given element. Different fonts have different heights for &#8216;x&#8217; even if their font-size is same. Hence the value of &#8216;ex&#8217; differs from font to font. Take a look at these fonts:</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><img class="alignnone size-full wp-image-465" title="ex_sizes" src="http://www.saffronstroke.com/wp-content/uploads/2009/04/ex_sizes.jpg" alt="ex_sizes" width="460" height="163" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/04/25/difference-between-em-and-ex-units/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What’s on the status bar of Microsoft Expression Web 2?</title>
		<link>http://www.saffronstroke.com/2009/04/14/whats-on-the-status-bar-of-microsoft-expression-web-2/</link>
		<comments>http://www.saffronstroke.com/2009/04/14/whats-on-the-status-bar-of-microsoft-expression-web-2/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 08:17:53 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[application options]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[Expression Web 2]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[mode]]></category>
		<category><![CDATA[page editor options]]></category>
		<category><![CDATA[schema]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[status bar]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.wordpress.com/?p=373</guid>
		<description><![CDATA[The Expression Web 2 status bar displays information about your current editing modes like visual aids mode, Style Application mode, Rendering mode and Page size mode along with some information about the file your are working with such as file size, HTML and CSS Schema. To view status bar, go to Tools &#62; Application Options [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/04/14/whats-on-the-status-bar-of-microsoft-expression-web-2/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F14%2Fwhats-on-the-status-bar-of-microsoft-expression-web-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F14%2Fwhats-on-the-status-bar-of-microsoft-expression-web-2%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">The Expression Web 2 status bar displays information about your current editing modes like visual aids mode, Style Application mode, Rendering mode and Page size mode along with some information about the file your are working with such as file size, HTML and CSS Schema.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;"><span style="font-family:Calibri;">To view status bar, go to <strong>Tools</strong> &gt; <strong>Application Options</strong> &gt; <strong>General</strong> tab and check the box: <strong>Show status bar</strong></span></span><span><span style="font-size:small;"><span style="font-family:Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><strong><img class="alignnone size-full wp-image-375" title="appln_opt1" src="http://www.saffronstroke.com/wp-content/uploads/2009/04/appln_opt1.jpg" alt="appln_opt1" width="444" height="348" /></strong></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">The status bar looks as shown in image below:</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;"><img class="alignnone size-full wp-image-376" title="status_bar" src="http://www.saffronstroke.com/wp-content/uploads/2009/04/status_bar.jpg" alt="status_bar" width="444" height="20" /></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">The information shown on the status bar is explained below:</span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent:-.25in;margin:0 0 0 .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;"><span style="font-family:Calibri;"><strong>HTML</strong> <strong>Incompatibility Detected icon</strong> – Depicts that there is an incompatibility in the HTML code, double click on the icon to go to the HTML schema incompatibility in your code.</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;"><span style="font-family:Calibri;"><strong>Code Error Detected icon</strong> – Illustrates an error in the code and when you double click on the icon it takes you to the error in the code.</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;"><span style="font-family:Calibri;"><strong>Visual Aids: On</strong> – Lets you change the Visual Aids mode. Double click to switch.</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;font-family:Calibri;">Style Application: Auto – Displays the current Style Application mode and lets you change the same. Double click to open the Style Application toolbar.</span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;"><span style="font-family:Calibri;"><strong>329 bytes</strong> – Displays the current size of the file.</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;"><span style="font-family:Calibri;"><strong>Standard</strong> – Is the Rendering mode in which Microsoft Expression Web displays the files. The rendering mode is determined by the DocType you have declared in the page. Double to open the Page Editor Options dialog box. </span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;"><span style="font-family:Calibri;"><strong>707 x 206</strong> – Displays the current size of the page. Click to choose a page size from the available list of sizes.</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;"><span style="font-family:Calibri;"><strong>XHTML 1.0 T</strong> – Is the HTML Schema Expression Web has applied to current page. Double click to open Page Editor Options and change the schema.</span></span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent:-.25in;margin:0 0 10pt .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;"><span style="font-family:Calibri;"><strong>CSS 2.1</strong> – Displays the CSS Schema Expression Web has applied to current page. Double click to open Page Editor Options and change the schema.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/04/14/whats-on-the-status-bar-of-microsoft-expression-web-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Incremental Search in Microsoft Expression Web 2</title>
		<link>http://www.saffronstroke.com/2009/04/07/what-is-incremental-search-in-microsoft-expression-web-2/</link>
		<comments>http://www.saffronstroke.com/2009/04/07/what-is-incremental-search-in-microsoft-expression-web-2/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 10:00:29 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[Expression]]></category>
		<category><![CDATA[Expression Suite]]></category>
		<category><![CDATA[Expression Web 2]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[incremental search]]></category>
		<category><![CDATA[incrementally]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[phrase]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[web page]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.wordpress.com/?p=428</guid>
		<description><![CDATA[Incremental search is a user interface interaction method to progressively search for and filter through text. In Expression Web, Incremental Search, searches the text as you type, and as soon as a match is found it immediately presents it to you. Incremental Search gives you an advantage, to stop short of typing the entire word [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/04/07/what-is-incremental-search-in-microsoft-expression-web-2/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F07%2Fwhat-is-incremental-search-in-microsoft-expression-web-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F07%2Fwhat-is-incremental-search-in-microsoft-expression-web-2%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;"><span style="font-family:Calibri;">Incremental search is <span lang="EN">a user interface interaction method to progressively search for and filter through text. In Expression Web, Incremental Search, searches the text as you type, and as soon as a match is found it immediately presents it to you. Incremental Search gives you an advantage, to stop short of typing the entire word or phrase you are looking for.</span></span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><strong><span style="font-size:small;"><span style="font-family:Calibri;"><span lang="EN">How to search incrementally?</span></span></span></strong></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent:-.25in;margin:0 0 0 .5in;"><span><span><span style="font-size:small;font-family:Calibri;">1.</span><span style="font:7pt &quot;">       </span></span></span><span style="font-size:small;font-family:Calibri;">Open the page or CSS file you want to search and place the cursor where you want to begin your search. </span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .5in;"><span><span><span style="font-size:small;font-family:Calibri;">2.</span><span style="font:7pt &quot;">       </span></span></span><span style="font-size:small;font-family:Calibri;">Go to <strong>Edit</strong> &gt; <strong>Incremental Search</strong>. Your cursor would now change to</span><span><span style="font-size:small;"><span style="font-family:Calibri;"> <img class="alignnone size-full wp-image-429" title="inc_search_cursor" src="http://www.saffronstroke.com/wp-content/uploads/2009/04/inc_search_cursor.jpg" alt="inc_search_cursor" width="32" height="26" /></span></span></span><span style="font-size:small;font-family:Calibri;">.</span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .5in;"><span><span><span style="font-size:small;font-family:Calibri;">3.</span><span style="font:7pt &quot;">       </span></span></span><span style="font-size:small;font-family:Calibri;">Now just type in the characters you want to search. The status bar would display the characters as you type them, and the first occurrence of the letters you have typed, would be highlighted in the page.</span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent:-.25in;margin:0 0 10pt .5in;"><span><span><span style="font-size:small;font-family:Calibri;">4.</span><span style="font:7pt &quot;">       </span></span></span><span style="font-size:small;font-family:Calibri;">To locate and move to the next occurrence of the characters press F3 and to go to the previous instance press SHIFT + F3.</span></p>
<p><span style="font-size:11pt;line-height:115%;font-family:&quot;">To stop the incremental search either press Esc, or Enter or just click somewhere in your page.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/04/07/what-is-incremental-search-in-microsoft-expression-web-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quick Tag Editor Tool in Microsoft Expression Web 2</title>
		<link>http://www.saffronstroke.com/2009/04/04/quick-tag-editor-tool-in-microsoft-expression-web-2/</link>
		<comments>http://www.saffronstroke.com/2009/04/04/quick-tag-editor-tool-in-microsoft-expression-web-2/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 10:32:59 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[Expression Web 2]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Quick Tag Editor]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.wordpress.com/?p=365</guid>
		<description><![CDATA[The Quick Tag Editor enables you to quickly add, modify or wrap a set of tags around other tag or set of tags while working in Design view or Code view of a web page. You also have access to IntelliSense in Quick Tag Editor. To access Quick Tag Editor: 1.    Switch to Design or [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/04/04/quick-tag-editor-tool-in-microsoft-expression-web-2/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F04%2Fquick-tag-editor-tool-in-microsoft-expression-web-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F04%2F04%2Fquick-tag-editor-tool-in-microsoft-expression-web-2%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="font-size:9pt;color:black;line-height:115%;font-family:&quot;"></span><span style="font-size:9pt;color:black;line-height:115%;font-family:&quot;"><span style="font-size:9pt;line-height:115%;font-family:Verdana,sans-serif;"><span style="color:#888888;"><img class="alignnone size-full wp-image-364" title="qte" src="http://www.saffronstroke.com/wp-content/uploads/2009/04/qte.jpg" alt="qte" width="459" height="54" /></span></span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:9pt;line-height:115%;font-family:&quot;"><span style="color:#888888;">The Quick Tag Editor enables you to quickly add, modify or wrap a set of tags around other tag or set of tags while working in Design view or Code view of a web page. You also have access to IntelliSense in Quick Tag Editor.</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:9pt;line-height:115%;font-family:&quot;"><span style="color:#888888;">To access Quick Tag Editor:</span></span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent:-.25in;margin:0 0 0 .5in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:&quot;">1.<span style="font:7pt &quot;">    </span></span><span style="font-size:9pt;line-height:115%;font-family:&quot;">Switch to Design or Code view in your workspace and place the cursor at the position where you want to add or modify or wrap an HTML tag.</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .5in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:&quot;">2.<span style="font:7pt &quot;">    </span></span><span style="font-size:9pt;line-height:115%;font-family:&quot;">Do any one of the following:</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .75in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:Symbol;">·<span style="font:7pt &quot;">         </span></span><span style="font-size:9pt;line-height:115%;font-family:&quot;">Go to <strong>Edit</strong> &gt; <strong>Quick Tag Editor</strong> or </span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .75in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:Symbol;">·<span style="font:7pt &quot;">         </span></span><span style="font-size:9pt;line-height:115%;font-family:&quot;">key in the shortcut keys <strong>CTRL + Q</strong> or</span></span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent:-.25in;margin:0 0 10pt .75in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:Symbol;">·<span style="font:7pt &quot;">         </span></span><span style="font-size:9pt;line-height:115%;font-family:&quot;">On the <strong>Quick Tag Selector</strong> bar located at the top of the document, select the tag you want to modify, click on the small arrow next to it and from the menu; choose <strong>Edit Tag</strong>, <strong>Insert HTML</strong> or <strong>Wrap Tag</strong>.</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt .5in;"><span style="font-size:9pt;line-height:115%;font-family:&quot;"><span style="color:#888888;">The Quick Tag Editor looks as shown below:</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt .5in;"><span style="color:#888888;"></span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent:-.25in;margin:0 0 0 .5in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:&quot;">3.<span style="font:7pt &quot;">    </span></span><span style="font-size:9pt;line-height:115%;font-family:&quot;">The editor gives you three options:</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .75in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:Symbol;">·<span style="font:7pt &quot;">         </span></span><strong><span style="font-size:9pt;line-height:115%;font-family:&quot;">Edit Tag</span></strong><span style="font-size:9pt;line-height:115%;font-family:&quot;"> – enables you to edit a current tag with its attributes and properties, along with addition of new tags.</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .75in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:Symbol;">·<span style="font:7pt &quot;">         </span></span><strong><span style="font-size:9pt;line-height:115%;font-family:&quot;">Insert HTML</span></strong><span style="font-size:9pt;line-height:115%;font-family:&quot;"> – lets you add HTML to the page</span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .75in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:Symbol;">·<span style="font:7pt &quot;">         </span></span><strong><span style="font-size:9pt;line-height:115%;font-family:&quot;">Wrap Tag</span></strong><span style="font-size:9pt;line-height:115%;font-family:&quot;"> – lets you nest tags by adding tags inside the one selected by you. </span></span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent:-.25in;margin:0 0 10pt .5in;"><span style="color:#888888;"><span style="font-size:9pt;line-height:115%;font-family:&quot;">4.<span style="font:7pt &quot;">    </span></span><span style="font-size:9pt;line-height:115%;font-family:&quot;">The drop down menu on the left of the Quick Tag Editor lets you select either of the above mentioned functions. The next box is where you enter your HTML and the right most buttons; green right mark means <strong>Enter</strong> and the red cross means <strong>Cancel</strong>.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/04/04/quick-tag-editor-tool-in-microsoft-expression-web-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How can I use Visual Aids in Microsoft Expression Web 2?</title>
		<link>http://www.saffronstroke.com/2009/02/24/how-can-i-use-visual-aids-in-microsoft-expression-web-2/</link>
		<comments>http://www.saffronstroke.com/2009/02/24/how-can-i-use-visual-aids-in-microsoft-expression-web-2/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 10:00:19 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[Expression]]></category>
		<category><![CDATA[Expression Web 2]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[visual aid]]></category>
		<category><![CDATA[visual aids]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://saffronstroke.wordpress.com/?p=380</guid>
		<description><![CDATA[Visual Aids in Microsoft Expression Web 2 help you with these 1.       See elements that are empty, invisible or with hidden border and styles. 2.       ASP.NET non-visual controls and errors. 3.       Size of margins and padding around your tags. 4.       Determine which tags are written around specific content in your page. To show or hide [...]]]></description>
			<content:encoded><![CDATA[<div align="left" style="float: none; clear:right; padding: 0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.saffronstroke.com/2009/02/24/how-can-i-use-visual-aids-in-microsoft-expression-web-2/"></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;; margin-top:-2px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F02%2F24%2Fhow-can-i-use-visual-aids-in-microsoft-expression-web-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.saffronstroke.com%2F2009%2F02%2F24%2Fhow-can-i-use-visual-aids-in-microsoft-expression-web-2%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Visual Aids in Microsoft Expression Web 2 help you with these </span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent:-.25in;margin:0 0 0 .25in;"><span><span><span style="font-size:small;font-family:Calibri;">1.</span><span style="font:7pt &quot;">       </span></span></span><span style="font-size:small;font-family:Calibri;">See elements that are empty, invisible or with hidden border and styles.</span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .25in;"><span><span><span style="font-size:small;font-family:Calibri;">2.</span><span style="font:7pt &quot;">       </span></span></span><span style="font-size:small;font-family:Calibri;">ASP.NET non-visual controls and errors.</span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-.25in;margin:0 0 0 .25in;"><span><span><span style="font-size:small;font-family:Calibri;">3.</span><span style="font:7pt &quot;">       </span></span></span><span style="font-size:small;font-family:Calibri;">Size of margins and padding around your tags.</span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent:-.25in;margin:0 0 10pt .25in;"><span><span><span style="font-size:small;font-family:Calibri;">4.</span><span style="font:7pt &quot;">       </span></span></span><span style="font-size:small;font-family:Calibri;">Determine which tags are written around specific content in your page.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">To show or hide a Visual Aid;</span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent:-.25in;margin:0 0 0 .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;font-family:Calibri;">Go to <strong>View</strong> &gt; <strong>Visual Aids</strong> and then choose a Visual Aid or</span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent:-.25in;margin:0 0 10pt .25in;"><span style="font-family:Symbol;"><span><span style="font-size:small;">·</span><span style="font:7pt &quot;">         </span></span></span><span style="font-size:small;font-family:Calibri;">On the <strong>Status Bar</strong> right click on <strong>Visual Aids</strong> and then click on the Visual Aid.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;"><img class="alignnone size-full wp-image-381" title="visual_aids" src="http://www.saffronstroke.com/wp-content/uploads/2009/04/visual_aids.jpg" alt="visual_aids" width="220" height="254" /></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Let us take a closer look at all the Visual Aids:</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">1.       <strong>Block Selection</strong>= This is enabled by default. Expression® Web displays a <em>block selector</em> for HTML blocks. A Block selector is a small tag indicator, when you hover over your cursor in a block a dotted rectangle appears around the tag. When you select the block a shaded area is displayed indicating padding around the element.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">2.       <strong>Visible Borders</strong>= This selection displays dotted borders around HTML elements that don’t have borders. For instance, a table in Expression® Web, Visual borders will render a dotted border around every cell even if the table has no border.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">3.       <strong>Empty Containers</strong>= The Empty Containers Visual Aid displays borders around certain elements that act as containers for other elements. For example, an HTML form is visible by default in Design View, even when the form has no controls in it.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">4.       <strong>Margins and Padding</strong>= This shows the margins and padding around all elements; margins appear in red and padding appears in blue. You cannot use <span>Margins and padding </span>visual aid to change margins and padding.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">5.       <strong>CSS Display: none elements</strong>= Shows elements that are hidden by a style that includes display: none. </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">6.       <strong>CSS Visibility: hidden Elements</strong> = Shows elements that are hidden by a style that includes visibility: hidden. </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">7.       <strong>ASP.NET Non-visual Controls</strong>= Shows a rectangle for ASP.NET controls which don&#8217;t display anything. </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">8.       <strong>ASP.NET Control Errors</strong>= Shows an error message when an ASP.NET control encounters an error, such as not connecting to a data source. </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;"><span style="font-family:Calibri;"><em>9.       </em><strong>Template Region Labels</strong>= Shows a border around editable template regions, including a tab with the name of the region, in pages based on Dynamic Web Templates or ASP.NET master pages.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2009/02/24/how-can-i-use-visual-aids-in-microsoft-expression-web-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

