<?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>CSS Concept &#187; CSS</title>
	<atom:link href="http://www.cssconcept.com/category/css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cssconcept.com</link>
	<description>CSS can be just that easy..</description>
	<lastBuildDate>Sat, 07 Jun 2008 13:07:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Styles used Everytime I start a new site</title>
		<link>http://www.cssconcept.com/css/styles-used-everytime-i-start-a-new-site</link>
		<comments>http://www.cssconcept.com/css/styles-used-everytime-i-start-a-new-site#comments</comments>
		<pubDate>Thu, 29 May 2008 18:10:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://cssconcept.com/css/styles-used-everytime-i-start-a-new-site</guid>
		<description><![CDATA[   No matter what you are choosing for your design to look like at the end of your development, it is impossible not to add few CSS declaration every time. These are essential for development.
 body {padding:0;}
It removes the gap around the edges.
body {background:#fff;} (or whatever color is appropriate)
It is being used just [...]]]></description>
			<content:encoded><![CDATA[<p>   No matter what you are choosing for your design to look like at the end of your development, it is impossible not to add few CSS declaration every time. These are essential for development.</p>
<h2><strong> body {padding:0;}</strong></h2>
<p>It removes the gap around the edges.</p>
<h2><strong>body {background:#fff;} (or whatever color is appropriate)</strong></h2>
<p>It is being used just to be granted that white has been choose as default for background , for each browser&#8217;s.</p>
<h2><strong>form {padding:0;margin:0;}</strong></h2>
<p>The form is important not th input.</p>
<h2><strong>ul {margin:0;padding:0;}</strong></h2>
<p>Padding and margin are set to o.</p>
<h2><strong>a img {border:0;}</strong></h2>
<p>For margin you will add it if necessary.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/css/styles-used-everytime-i-start-a-new-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What you should NOT DO IN CSS</title>
		<link>http://www.cssconcept.com/css/what-you-should-not-do-in-css</link>
		<comments>http://www.cssconcept.com/css/what-you-should-not-do-in-css#comments</comments>
		<pubDate>Fri, 23 May 2008 12:18:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Design]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/css/what-you-should-not-do-in-css</guid>
		<description><![CDATA[  In the following article, we will provide some excellent examples of what you should not do in CSS.
 IE. behaviors
  Behaviors are a certain way to add HTML elements with the use of CSS style.
How can we make exception and avoid problems? Behavior is supported only by IE. What to use else [...]]]></description>
			<content:encoded><![CDATA[<p>  In the following article, we will provide some excellent examples of what you should not do in CSS.</p>
<p><strong> IE. behaviors</strong></p>
<h3>  Behaviors are a certain way to add HTML elements with the use of CSS style.</h3>
<p>How can we make exception and avoid problems? Behavior is supported only by IE. What to use else ? = <strong>JavaScript</strong> and <strong>HTML DOM.</strong></p>
<h3>1.Typewriter Simulation</h3>
<p>The following HTML element has a &lt;style&gt; that defines an behavior for elements with an id.<br />
<a href="http://cssconcept.com/wp-content/uploads/2008/05/331.jpg" title="331.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/331.jpg" alt="331.jpg" /></a></p>
<p><span id="more-457"></span></p>
<p><strong> XML document :</strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/34.jpg" title="34.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/34.jpg" alt="34.jpg" /></a></p>
<h3>2.Mouseover Highlight</h3>
<p>HTML file has a &lt;style&gt; element that defines a behavior for the &lt;h1&gt;.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/35.jpg" title="35.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/35.jpg" alt="35.jpg" /></a></p>
<p><strong>XML document:</strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/36.jpg" title="36.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/36.jpg" alt="36.jpg" /></a></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/32.jpg" title="32.jpg"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/css/what-you-should-not-do-in-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Types in CSS2</title>
		<link>http://www.cssconcept.com/css/media-types-in-css2</link>
		<comments>http://www.cssconcept.com/css/media-types-in-css2#comments</comments>
		<pubDate>Fri, 23 May 2008 11:48:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/css/media-types-in-css2</guid>
		<description><![CDATA[ Definition and short description of Media Types:
The concept gives you the chance to specify how your document shall be presented in more typo of media. The difference stands in the layout presentation, on the screen, on the paper, with an aural browser.
Media Types :
Attention, some CSS properties are designed for just a certain media. And [...]]]></description>
			<content:encoded><![CDATA[<p> Definition and short description of <strong>Media Type</strong>s:</p>
<p>The concept gives you the chance to specify how your document shall be presented in more typo of media. The difference stands in the layout presentation, on the screen, on the paper, with an aural browser.</p>
<p><strong>Media Types :</strong></p>
<p>Attention, some CSS properties are designed for just a certain media. And other properties can be used for different media. &#8220;font-size&#8221; can be used also for screen and also print media, but with different values.</p>
<p><span id="more-455"></span></p>
<p><strong>Media Rules :</strong></p>
<p>Certain rules gives you the opportunity to use some style rules to different media in the same style sheet. The following examples has 14 pixels font, that tells to the browser to display it on the screen. Though if the page is printed, you will need just 10 pixels font. Also see that the font-weight is set to bold, both on screen and paper.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/28.jpg" title="28.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/28.jpg" alt="28.jpg" /></a></p>
<p>The difference will be seen in a sec, when you will print the page and see under the paragraph under Media Types a different font, with a smaller size, than the rest.</p>
<p><strong>Description</strong></p>
<p>protection : use slides, for projected presentations;</p>
<p>braille : tactile feedback devices</p>
<p>all : type devices</p>
<p>aural :synthesizers for speech and sound</p>
<p>tty : teletypes and terminals for media</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/css/media-types-in-css2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Box Model &#8211; dimensions, padding, margin and borders</title>
		<link>http://www.cssconcept.com/css/box-model-dimensions-padding-margin-and-borders</link>
		<comments>http://www.cssconcept.com/css/box-model-dimensions-padding-margin-and-borders#comments</comments>
		<pubDate>Wed, 21 May 2008 19:12:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/css/box-model-dimensions-padding-margin-and-borders</guid>
		<description><![CDATA[CSS Properties. Valid Proprieties of CSS standard. It contains border-width, border-top-width,  border-right-width, border-bottom-width, border-left-width/  border, border-top, border-right, border-bottom, border-left/ outline-width/ height/ margin, margin-top, margin-right, margin-bottom, margin-left&#8230;
Examples :
   border-width, border-top-width, border-right-width, border-bottom-width, border-left-width
CSS code:


 border,border-top,border-right, border-bottom, border-left
CSS code:

outline-width
CSS code:

height
it shows a block box height
CSS code:

 margin, margin-top, margin-right, margin-bottom, margin-left
CSS code:

 padding, [...]]]></description>
			<content:encoded><![CDATA[<p>CSS Properties. Valid Proprieties of CSS standard. It contains border-width, border-top-width,  border-right-width, border-bottom-width, border-left-width/  border, border-top, border-right, border-bottom, border-left/ outline-width/ height/ margin, margin-top, margin-right, margin-bottom, margin-left&#8230;</p>
<h3><strong>Examples :</strong></h3>
<h3><strong>   border-width, border-top-width, border-right-width, border-bottom-width, border-left-width</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/20.jpg" title="20.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/20.jpg" alt="20.jpg" /></a></p>
<p><span id="more-428"></span></p>
<h3><strong> border,border-top,border-right, border-bottom, border-left</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/21.jpg" title="21.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/21.jpg" alt="21.jpg" /></a></p>
<h3><strong>outline-width</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/22.jpg" title="22.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/22.jpg" alt="22.jpg" /></a></p>
<h3><strong>height</strong></h3>
<p>it shows a block box height</p>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/23.jpg" title="23.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/23.jpg" alt="23.jpg" /></a></p>
<h3> <strong>margin, margin-top, margin-right, margin-bottom, margin-left</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/24.jpg" title="24.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/24.jpg" alt="24.jpg" /></a></p>
<h3><strong> padding, padding-top, padding-right, padding-bottom, padding-left</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/25.jpg" title="25.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/25.jpg" alt="25.jpg" /></a></p>
<h3><strong>outline-style</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/26.jpg" title="26.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/26.jpg" alt="26.jpg" /></a></p>
<h3><strong> border-style, border-top-style, border-right-style, border-bottom-style, border-left-style</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/27.jpg" title="27.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/27.jpg" alt="27.jpg" /></a></p>
<h1></h1>
<h1></h1>
<h1></h1>
]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/css/box-model-dimensions-padding-margin-and-borders/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Properties &#8211; Text &amp; Fonts</title>
		<link>http://www.cssconcept.com/css/css-properties-text-fonts</link>
		<comments>http://www.cssconcept.com/css/css-properties-text-fonts#comments</comments>
		<pubDate>Wed, 21 May 2008 18:38:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/css/css-properties-text-fonts</guid>
		<description><![CDATA[  Valid Proprieties of CSS standard. It contais letter spacing, font, font-family, font-size, font-weight, font-style, font-variant, line-height, letter-spacing, word-spacing, text-align, text-decoration, text-indent, text-transform, vertical-align, white-space.
Examples :
 letter spacing
CSS code:


 font
CSS code:

font-family
CSS code:

font-size
CSS code:

font-style
CSS code:

text-align
CSS code:

line-height
CSS code:

text-transform
CSS code:

font-weight
CSS code:

white-space
CSS code:

font-variant
CSS code:

text-indent
CSS code:

word-spacing
CSS code:

vertical-align
CSS code:

text-decoration
CSS code:

]]></description>
			<content:encoded><![CDATA[<p>  Valid Proprieties of CSS standard. It contais letter spacing, font, font-family, font-size, font-weight, font-style, font-variant, line-height, letter-spacing, word-spacing, text-align, text-decoration, text-indent, text-transform, vertical-align, white-space.</p>
<h2><strong>Examples :</strong></h2>
<h3><strong> letter spacing</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/5.jpg" title="5.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/5.jpg" alt="5.jpg" /></a></p>
<p><span id="more-413"></span></p>
<h3><strong> font</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/6.jpg" title="6.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/6.jpg" alt="6.jpg" /></a></p>
<h3><strong>font-family</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/7.jpg" title="7.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/7.jpg" alt="7.jpg" /></a></p>
<h3><strong>font-size</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/8.jpg" title="8.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/8.jpg" alt="8.jpg" /></a></p>
<h3><strong>font-style</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/9.jpg" title="9.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/9.jpg" alt="9.jpg" /></a></p>
<h3><strong>text-align</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/10.jpg" title="10.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/10.jpg" alt="10.jpg" /></a></p>
<h3><strong>line-height</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/11.jpg" title="11.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/11.jpg" alt="11.jpg" /></a></p>
<h3><strong>text-transform</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/12.jpg" title="12.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/12.jpg" alt="12.jpg" /></a></p>
<h3><strong>font-weight</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/13.jpg" title="13.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/13.jpg" alt="13.jpg" /></a></p>
<h3><strong>white-space</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/14.jpg" title="14.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/14.jpg" alt="14.jpg" /></a></p>
<h3><strong>font-variant</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/15.jpg" title="15.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/15.jpg" alt="15.jpg" /></a></p>
<h3><strong>text-indent</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/16.jpg" title="16.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/16.jpg" alt="16.jpg" /></a></p>
<h3><strong>word-spacing</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/17.jpg" title="17.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/17.jpg" alt="17.jpg" /></a></p>
<h3><strong>vertical-align</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/18.jpg" title="18.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/18.jpg" alt="18.jpg" /></a></p>
<h3><strong>text-decoration</strong></h3>
<p>CSS code:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/19.jpg" title="19.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/19.jpg" alt="19.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/css/css-properties-text-fonts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things that should be known about CSS Specificity</title>
		<link>http://www.cssconcept.com/css/things-that-should-be-known-about-css-specificity</link>
		<comments>http://www.cssconcept.com/css/things-that-should-be-known-about-css-specificity#comments</comments>
		<pubDate>Mon, 19 May 2008 19:02:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Theory]]></category>

		<guid isPermaLink="false">http://cssconcept.com/css/things-that-should-be-known-about-css-specificity</guid>
		<description><![CDATA[Separate  from Floats , CSS Specificity is being considerate a hard and complex concept of Cascading Style Sheets. If sometimes your CSS doesn&#8217;t respond to your codes, that&#8217;s because the different weight of selectors. The most important is to start to understand how your browser interpret your code. And for that you need to [...]]]></description>
			<content:encoded><![CDATA[<p>Separate  from Floats , CSS Specificity is being considerate a hard and complex concept of Cascading Style Sheets. If sometimes your CSS doesn&#8217;t respond to your codes, that&#8217;s because the different weight of selectors. The most important is to start to understand how your browser interpret your code. And for that you need to have an understanding on how specificity works. Such problems are made because the fact that on your CSS you have defined a more specific selector.<br />
CSS Specificity is not that easy, and trough this article we are trying to explain the concept.</p>
<p><span id="more-393"></span></p>
<h3>Definition of Specificity</h3>
<p><strong>In short words Specificity determines on which CSS rules is being applied by browser</strong>.  &#8220;Specificity is a type of weighting that has a bearing on how your cascading style sheet (CSS) rules are displayed.&#8221;[<a href="http://www.adobe.com/devnet/dreamweaver/articles/css_specificity.html">Understand Specificity</a>]</p>
<p><strong>All selectors have their specificity.</strong> &#8220;All rules in your style sheet carry a specificity rating regardless of selector type, although the weighting that is given to each selector type varies and will ultimately affect the styling of your web documents.&#8221;[<a href="http://www.adobe.com/devnet/dreamweaver/articles/css_specificity.html">Understanding Specificity</a>]</p>
<p><strong>Selector specificity is a process used to determine which rules take precedence in CSS</strong> when several rules could be applied to the same element in markup. It&#8217;s a simple enough process, but has caught out a lot of developers at some point in their career. [<a href="http://juicystudio.com/article/selector-specificity.php">Selector Specificity</a>]</p>
<p><strong>Principles</strong></p>
<ul>
<li><strong>  Unequal specificity: &#8220;</strong>A selector can contain one or more reference points, the greater the specificity rating of these reference points the more specific your rule is.&#8221; [<a href="http://www.adobe.com/devnet/dreamweaver/articles/css_specificity_02.html">Understanding Specificity</a>]</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/css/things-that-should-be-known-about-css-specificity/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Definition</title>
		<link>http://www.cssconcept.com/css/css-definition</link>
		<comments>http://www.cssconcept.com/css/css-definition#comments</comments>
		<pubDate>Mon, 19 May 2008 12:23:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Theory]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/css/css-definition</guid>
		<description><![CDATA[What is CSS is in fact ?
For a while CSS is no longer something that represents what we call &#8216;unknown&#8217;. The following so called article/tutorial will teach you what CSS is and what it can do for you. So CSS is an acronym for Cascading Style Sheets.
What can we do with CSS ?
Simple and with [...]]]></description>
			<content:encoded><![CDATA[<h3>What is CSS is in fact ?</h3>
<p>For a while CSS is no longer something that represents what we call &#8216;unknown&#8217;. The following so called article/tutorial will teach you what CSS is and what it can do for you. So CSS is an <strong>acronym</strong> for <strong>Cascading Style Sheets.</strong></p>
<h3><strong>What can we do with CSS ?</strong></h3>
<p>Simple and with no more other introduction, CSS is the language that defines layout of HTML documents. CSS is covering lines, height, width, fonts, margins, advanced and other things.</p>
<p>HTML is being used to add layout to a website. CSS offers a great and large gamut of option and is more accurate and sophisticated. All the browsers are supporting CSS today.</p>
<p><span id="more-368"></span></p>
<h3>There is a difference between CSS and HTML ?</h3>
<p>First HTML is being used to structure content, and CSS for  formatting structured  content. The composition may sound lit bit mechanical though in few seconds we will show you the difference.<br />
Back, in the early times when world wide web was just at the beginning , HTML was used just to add structure to text. Everyone could use HTML tags like &lt;h1&gt; and &lt;p&gt; just to mark the text.</p>
<p>Slowly the world wide web gained popularity and to make look better the layout for the online document, HTML was upgrade, especially the tags, was add such as &lt;font&gt; which was lit bit differed from the original.</p>
<p>So some situation where led, by this HTML upgrade, and the original tags where misused to layout pages instead of adding structure to text. And some browsers where not supporting some tags.</p>
<p>So, here was invented CSS to repair the situation and to provide to web designers a sophisticated and large gamut of opportunities to change the layout, which was supported by all browsers.</p>
<h3><strong> Benefits of CSS</strong></h3>
<p>It is used for web designing. The benefits include :</p>
<ul>
<li>permanent control of the layout to document from a style sheet;  (more if necessary)</li>
<li>more control of layout;</li>
<li>possibility to apply different layout to media-types.</li>
<li>techniques and advantages.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/css/css-definition/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Cut Number Of Tags Used</title>
		<link>http://www.cssconcept.com/css/css-cut-number-of-tags-used</link>
		<comments>http://www.cssconcept.com/css/css-cut-number-of-tags-used#comments</comments>
		<pubDate>Sat, 17 May 2008 13:11:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://cssconcept.com/css/css-cut-number-of-tags-used</guid>
		<description><![CDATA[  Since CSS has become so strong and high recomanded on projects, we will slowly reduce the number of HTML tags that we are using all the time. And doing that we are still able to make impressive and nice looking layouts pages by using 6 types of HTML tags.  
  Example [...]]]></description>
			<content:encoded><![CDATA[<p>  Since CSS has become so strong and high recomanded on projects, we will slowly reduce the number of HTML tags that we are using all the time. And doing that we are still able to make impressive and nice looking layouts pages by using <strong>6 types of HTML tags.  </strong></p>
<p><strong>  Example of tags that we will use to layout the content : </strong></p>
<p><strong>&lt;h&gt;</strong> Heading tags that range from are <strong>&lt;h1&gt;&lt;/h1&gt; to &lt;h6&gt;&lt;/h6&gt;,  </strong>these are going to mark the headings in the pages. <strong>&lt;h1&gt;</strong> shall be the most wrapped and the last important <strong>&lt;h6&gt;</strong> tag.</p>
<p><span id="more-364"></span></p>
<p><strong>Example :</strong></p>
<p>&lt;h1&gt; <strong>CSS Template  </strong>&lt;/h1&gt;</p>
<p>This sends to search engines and browsers that the first page is about <strong>&#8216;CSS Template&#8217;. </strong>Each browsers have a default size <strong>&lt;h&gt;</strong> tag. Some of these defaults are not unusable for example <strong>&lt;h1&gt; </strong>they are too big. But CSS can be easy to change, and we will use CSS to make the text more linking.</p>
<p><strong>&lt;p&gt; </strong>We are using the paragraph tag just to mark parts of the pages that are &#8216;paragraphs&#8217;. They are &#8216;block element&#8217; ; that means where ever a space is inserted a block acts.</p>
<p><strong>&lt;ul&gt;</strong> and <strong>&lt;ol&gt;  </strong>will be used to make the menu. <strong>&lt;ul&gt; </strong>tag make a list tag which makes a list with bullets or images/icons but no order is being specify. <strong>&lt;ol&gt;</strong> tag represents the &#8216;ordered tag list&#8217; and make a list, distinct of bullets, list elements which are marked with numbers and letters.</p>
<p><strong>&lt;div&gt;</strong> We are using <strong>&lt;div&gt; </strong>just to create containers for parts of our page. The main attribution of &lt;div&gt; will be to &#8220;hold&#8221; the menu and also to &#8220;hold&#8221; the main page.</p>
<p><strong>&lt;a href&gt;</strong> The most important in HTML : the hyperlink tag. This make the text hyper so when we click on it we can load another page or we are able to activate a JavaScript.</p>
<p><strong> &lt;img&gt;</strong> The image tag, gives you the permission to link to images.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/css/css-cut-number-of-tags-used/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
