<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>CSS Concept</title>
	
	<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>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CssConcept" /><feedburner:info uri="cssconcept" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>CSS Syntax</title>
		<link>http://feedproxy.google.com/~r/CssConcept/~3/qwyv60yu-I0/css-syntax</link>
		<comments>http://www.cssconcept.com/tutorials/css-syntax#comments</comments>
		<pubDate>Sat, 07 Jun 2008 13:05:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/tutorials/css-syntax</guid>
		<description><![CDATA[Syntax 
The concept of CSS Syntax is made of three parts :
a) selector
b) property
c) value  

Selector = HTML element/tag that you wish to define. Property = the attribute that you wish to change. Each property can take a value. The last two are separated by a colon, surrounded by curly braces :


Though, when the [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>Syntax </strong></h3>
<p>The concept of CSS Syntax is made of three parts :</p>
<p><strong>a) selector</strong></p>
<p><strong>b) property</strong></p>
<p><strong>c) value  </strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/174.jpg" title="174.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/174.jpg" alt="174.jpg" /></a><br />
Selector = HTML element/tag that you wish to define. Property = the attribute that you wish to change. Each property can take a value. The last two are separated by a colon, surrounded by curly braces :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/175.jpg" title="175.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/175.jpg" alt="175.jpg" /></a></p>
<p><span id="more-615"></span></p>
<p>Though, when the value is multiple words, add a quote around the value</p>
<pre><a href="http://cssconcept.com/wp-content/uploads/2008/06/176.jpg" title="176.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/176.jpg" alt="176.jpg" /></a></pre>
<p>When you want to specify more than one property, separate each property with a semicolon.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/177.jpg" title="177.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/177.jpg" alt="177.jpg" /></a></p>
<p>To be more reliable, you can describe one property on each line :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/178.jpg" title="178.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/178.jpg" alt="178.jpg" /></a></p>
<h3><strong> Grouping</strong></h3>
<p>Each selector can separate with comma. Bellow we have grouped all the headers elements.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/179.jpg" title="179.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/179.jpg" alt="179.jpg" /></a></p>
<h3> Class Selector</h3>
<p>Class selectors can define different styles for the same type of HTML element.  Here is an example when you have two paragraphs (right-aligned and center-aligned) :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/180.jpg" title="180.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/180.jpg" alt="180.jpg" /></a></p>
<p>The class attribute in your HTML document :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/181.jpg" title="181.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/181.jpg" alt="181.jpg" /></a></p>
<p>M ore than one class per given element :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/182.jpg" title="182.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/182.jpg" alt="182.jpg" /></a></p>
<p>If you omit the tag name in the selector to define a style that will be used by all HTML elements that have a certain class.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/183.jpg" title="183.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/183.jpg" alt="183.jpg" /></a></p>
<h3>id Selector</h3>
<p>The id  selector is defined as a #.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/185.jpg" title="185.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/185.jpg" alt="185.jpg" /></a></p>
<h3>CSS Comments</h3>
<p>Are used to explain your code, and may help you when you edit the source code at a later date.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/186.jpg" title="186.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/186.jpg" alt="186.jpg" /></a></p>
<img src="http://feeds.feedburner.com/~r/CssConcept/~4/qwyv60yu-I0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/tutorials/css-syntax/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cssconcept.com/tutorials/css-syntax</feedburner:origLink></item>
		<item>
		<title>Classic two-column layout with left side – Tutorial</title>
		<link>http://feedproxy.google.com/~r/CssConcept/~3/yvZSvxfU2JU/classic-two-column-layout-with-left-side-tutorial</link>
		<comments>http://www.cssconcept.com/tutorials/classic-two-column-layout-with-left-side-tutorial#comments</comments>
		<pubDate>Sat, 07 Jun 2008 12:02:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/tutorials/classic-two-column-layout-with-left-side-tutorial</guid>
		<description><![CDATA[ The following tutorial will make a simple two-column layout. For the beginning the page is simple, and you know that the content (images, text) is marked with HTML code between the &#60;body&#62; and &#60;/body&#62; tags.
First We will have this :


Above we have 2 sections marked using &#60;div&#62; tags.  &#60;div&#62; tags are being used [...]]]></description>
			<content:encoded><![CDATA[<p> The following tutorial will make a simple two-column layout. For the beginning the page is simple, and you know that the content (images, text) is marked with HTML code between the <strong>&lt;body&gt;</strong> and <strong>&lt;/body&gt;</strong> tags.</p>
<p>First We will have this :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/167.jpg" title="167.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/167.jpg" alt="167.jpg" /></a></p>
<p><span id="more-606"></span></p>
<p>Above we have 2 sections marked using &lt;div&gt; tags.  &lt;div&gt; tags are being used to create a division in the doc. or to make a department.  The following code is doing that and is forming 2 containers and each has an unique ID :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/1681.jpg" title="1681.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/1681.jpg" alt="1681.jpg" /></a></p>
<p>The content of the page are contained in one of the major page division. So what are the rules of ID&#8217;s in HTML pages and why do we use them like DIVs to assign them to page ?</p>
<p><strong>a ) </strong>You can assign ID&#8217;s to HTML tag. And also an ID to a <strong>&lt;p&gt;</strong> tag.<br />
<strong>b)</strong>  It should be used just once. The rule that two elements must have one ID is true. ID are used to uniquely identify a page element. Above we have presented just an page element having an ID of navigation and only one ID of &#8216;centerDoc&#8217;.</p>
<p><strong> c) </strong>ID&#8217;s on HTML pages are used in CSS. For changing the appearance we can target ID&#8217;s in our CSS code.</p>
<p>In &lt;div&gt; tags we are using header tags like : &lt;h1&gt; and &lt;h2&gt; for setting the headers.  In the following code we have attached the CSS doc. with the line code between the <strong>&lt;head&gt; &lt;head/head&gt;</strong> tags :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/169.jpg" title="169.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/169.jpg" alt="169.jpg" /></a></p>
<p>Like all page link we have an &#8216;href&#8217; attribute for this time to a CSS doc which has all CSS code and will affect the page if we linked to it.</p>
<p>So after we have the styled sheet linked to the doc. we can look at the <strong>CSS code. </strong>First snippet of code &#8217;styles&#8217; the unique ID&#8217;s we have mentioned before :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/170.jpg" title="170.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/170.jpg" alt="170.jpg" /></a></p>
<p>We will pay attention just to some elements for the moment. In the previous example we have 2 selectors, one for ID and each selectors are grouped using the curly brackets :{}.  In the following example you will see the CSS selectors code with all the guts out :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/171.jpg" title="171.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/171.jpg" alt="171.jpg" /></a></p>
<p>Now we have a CSS ID selector for each of our HTML divs which have an ID, and have the same corresponding name. The CSS selecotr <strong>#centerDoc applies to the div : &#8216;&lt;div id = &#8220;centerDoc&#8221;&gt;.  </strong>For the div with id of &#8216;navigation&#8217; we have the code :</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/172.jpg" title="172.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/172.jpg" alt="172.jpg" /></a></p>
<p>The great thing is in the CSS code for centerDoc:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/06/173.jpg" title="173.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/06/173.jpg" alt="173.jpg" /></a></p>
<p>CSS is able to concept from 0-100% a box or you name it, that wraps around HTML elements. The model consists of : margins, padding, content and other.. this gives you the opportunity to space elements in relation with other ones.</p>
<p>So, all between &lt;div&gt; tags is content. After comes padding. Then a border and the margin.</p>
<img src="http://feeds.feedburner.com/~r/CssConcept/~4/yvZSvxfU2JU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/tutorials/classic-two-column-layout-with-left-side-tutorial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cssconcept.com/tutorials/classic-two-column-layout-with-left-side-tutorial</feedburner:origLink></item>
		<item>
		<title>CSS Styleguides a fast way to reach Readability</title>
		<link>http://feedproxy.google.com/~r/CssConcept/~3/iiCqWAJTp_g/css-styleguides-a-fast-way-to-reach-readability</link>
		<comments>http://www.cssconcept.com/tutorials/css-styleguides-a-fast-way-to-reach-readability#comments</comments>
		<pubDate>Fri, 30 May 2008 11:47:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/tutorials/css-styleguides-a-fast-way-to-reach-readability</guid>
		<description><![CDATA[   For your first develop, you are ready to drop all the structures of the project that contains classes, schemes and so many codes and you are ready to start the next one. For comprehending coding, you need more time, perhaps less, but as fas as I know coding is lit bit hard and nasty. [...]]]></description>
			<content:encoded><![CDATA[<p>   For your first develop, you are ready to drop all the structures of the project that contains classes, schemes and so many codes and you are ready to start the next one. For comprehending coding, you need more time, perhaps less, but as fas as I know coding is lit bit hard and nasty. And after time goes by, codes starts to get complex, they are starting to get very high complex, depending on the project. So, how can you get sensible structure? Make use of comments &#8211; after the projects itself has been ended.</p>
<p>In time, each developer started to make more creative and inventive the comments and format of the text and to improve the surveillance of CSS. This are structured in CSS-styleguides &#8211; master of CSS code which offer for developers very helpful hints for the structure of the code and many information of the background related.</p>
<p>The following article has <strong>5 techniques that can improve your developing skills. </strong>The following codes can be apply to CSS and also to any stylesheet that you are using.</p>
<p><span id="more-594"></span></p>
<ul>
<li>
<h3><strong>Divide the code</strong></h3>
</li>
</ul>
<p>The most important in your CSS-code are the structure of the layout and identity. First start and choose the order of the CSS-selectors according to your div&#8217;s and classes from your layout. One mentioning, before doing that have some time and group common elements in distinct section and give a name to each one.<br />
Separate fragments of code, choose flags or striking comments. They will serve as a heading in the stylesheet for each group . Recognize single blocks when scanning trough your code, and after add the flags.</p>
<p>For large developments this hints might not be enough, though are good. For that divide your code in more/multiple case for having a control to it. You will have to use master-stylesheet for controlling them, and so your code shall be easy to control. Include only <strong>master-file in your doc.</strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/156.jpg" title="156.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/156.jpg" alt="156.jpg" /></a></p>
<p>For bigger projects use brief update log.For not having problems when debugging CSS-code use diagnostic styling.</p>
<ul>
<li>
<h3><strong> Start and Define a table of Contents</strong></h3>
</li>
</ul>
<p>For having everything clear, you might consider having a  table of contents at the beginning of your CSS-file. For doing that you have to integrate a table of contents / or display a <strong>3</strong> overview of the layout having ID&#8217;s , classes that are being used in the three. Use some detailed named for them, for the section, to reach faster at them.</p>
<p>Also some of the elements that you want to change regular select them, at the end, when you release the project.   The classes and ID can appear in your table of contents.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/157.jpg" title="157.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/157.jpg" alt="157.jpg" /></a></p>
<p><strong>or so :</strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/158.jpg" title="158.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/158.jpg" alt="158.jpg" /></a></p>
<p>use <strong>simple enumeration without indentation</strong>. That&#8217;s easy, quick and effective.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/159.jpg" title="159.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/159.jpg" alt="159.jpg" /></a></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/160.jpg" title="160.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/160.jpg" alt="160.jpg" /></a></p>
<p>The role of having a table of contents is that it would be easier for other to read the code. This can save time when it is in table of contents.</p>
<ul>
<li>
<h3><strong> Define color and Typography</strong></h3>
</li>
</ul>
<p>When you are starting a project you should know that colors and typography are &#8216;constants&#8217;. First you should make a color glossary. So, you will have some reference of the colors that you are using in the site, so you will have to avoid mistakes, and when you need to change a color, you will have a list.<br />
<a href="http://cssconcept.com/wp-content/uploads/2008/05/161.jpg" title="161.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/161.jpg" alt="161.jpg" /></a></p>
<p><strong> describe color codes used in your layout. </strong>for a given design element you can describe the colors which are used there.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/162.jpg" title="162.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/162.jpg" alt="162.jpg" /></a></p>
<p><strong>The same holds for typography.</strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/163.jpg" title="163.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/163.jpg" alt="163.jpg" /></a></p>
<ul>
<li>
<h3>CSS properties</h3>
</li>
</ul>
<p>The CSS properties must be ordered with some special formatting, so the code would be more reliable, intuitive.  Some put the colors and fonts first, some put the positioning and floats first.</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/164.jpg" title="164.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/164.jpg" alt="164.jpg" /></a></p>
<p>an <strong>alphabetical order</strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/165.jpg" title="165.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/165.jpg" alt="165.jpg" /></a></p>
<ul>
<li>
<h3>Indentation helps</h3>
</li>
</ul>
<p><strong>   One-liners for brief fragments of code </strong>is very helpful to see if your code is good. The result might not be positive if you have defined 3 attributes for a selector, or other stuff like that. Your code readability will grow fast and you will find some specific element in your stylesheet.<br />
<a href="http://cssconcept.com/wp-content/uploads/2008/05/166.jpg" title="166.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/166.jpg" alt="166.jpg" /></a></p>
<p>Styleguides are a great and very helpful &#8216;hand&#8217; when you need. So, remove all your styleguide that doesn&#8217;t help to have a better code. The idea is to have a nice and easy to read code, follow the rules and you will have good results.</p>
<p><strong>Fast Help</strong></p>
<p><a href="http://css-tricks.com/videos/css-tricks-video-8.php">CSS-Tricks</a></p>
<p><a href="http://www.louddog.com/bloggity/2008/03/css-best-practices.php">Loud Dog</a></p>
<p><a href="http://woork.blogspot.com/2008/01/optimize-your-css-files-to-improve-code.html">Optimize you CSS</a></p>
<p><a href="http://css-tricks.com/indent-css-changes-you-are-unsure-about/">Indent CSS Changes</a></p>
<p><a href="http://www.onyx-design.net/weblog2/css/12-articles-and-tools-for-css-structuring-and-optimising/">12 Articles and Tools for CSS</a></p>
<img src="http://feeds.feedburner.com/~r/CssConcept/~4/iiCqWAJTp_g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/tutorials/css-styleguides-a-fast-way-to-reach-readability/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cssconcept.com/tutorials/css-styleguides-a-fast-way-to-reach-readability</feedburner:origLink></item>
		<item>
		<title>CSS – a Way to lead to Master Design</title>
		<link>http://feedproxy.google.com/~r/CssConcept/~3/jxVFLhamM2g/css-a-way-to-lead-to-master-design</link>
		<comments>http://www.cssconcept.com/resources/css-a-way-to-lead-to-master-design#comments</comments>
		<pubDate>Fri, 30 May 2008 10:23:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://cssconcept.com/resources/css-a-way-to-lead-to-master-design</guid>
		<description><![CDATA[   Since we have started our articles of what CSS is about, several visitors have asked us, if CSS really can develop a web site from 0 &#8211; 100 % when we are talking of design. Well, sure..since CSS has become more used than ever, we are glad to be the first that make a [...]]]></description>
			<content:encoded><![CDATA[<p>   Since we have started our articles of what CSS is about, several visitors have asked us, if CSS really can develop a web site from 0 &#8211; 100 % when we are talking of design. Well, sure..since CSS has become more used than ever, we are glad to be the first that make a first connection with CSS and the real designing techniques. We refer that at the copied templates or scripts and made few changed after, we refer at the real web developer, who know what CSS and coding means.</p>
<p><strong>You will find here also principles in web design. </strong></p>
<p>CSSconcept has collected a list of some of the most attractive and professional websites, that we have considered most attractive. We hope that in your developing you will have time and see their result, and maybe you will apply some of their layouts in yours.</p>
<p><a href="http://www.andyrutledge.com/bad-layout-conventions.php"> DesignView/Andy Rutledge</a></p>
<p><a href="http://www.andyrutledge.com/bad-layout-conventions.php" title="139.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/139.jpg" alt="139.jpg" /></a></p>
<p><span id="more-576"></span></p>
<p><a href="http://ilovetypography.com/2008/04/11/extreme-type-terminology-part-3/">eXtreme Type Termonology</a></p>
<p><a href="http://ilovetypography.com/2008/04/11/extreme-type-terminology-part-3/" title="140.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/140.jpg" alt="140.jpg" /></a></p>
<p><a href="http://www.uxmag.com/strategy/327/investing-in-ux">UX Magazine</a></p>
<p><a href="http://www.uxmag.com/strategy/327/investing-in-ux" title="141.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/141.jpg" alt="141.jpg" /></a></p>
<p><a href="http://www.designbyfire.com/?p=33">Design by Fire</a></p>
<p><a href="http://www.designbyfire.com/?p=33" title="142.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/142.jpg" alt="142.jpg" /></a></p>
<p><a href="http://www.zeldman.com/2007/08/14/dont-design-on-spec/">Jeffrey Zeldman</a></p>
<p><a href="http://www.zeldman.com/2007/08/14/dont-design-on-spec/" title="143.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/143.jpg" alt="143.jpg" /></a></p>
<p><a href="http://alistapart.com/articles/webdesignsurvey">A List Apart</a></p>
<p><a href="http://alistapart.com/articles/webdesignsurvey" title="144.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/144.jpg" alt="144.jpg" /></a></p>
<p><a href="http://www.sitepoint.com/article/principles-beautiful-web-design">The Principles of Beautiful Web Design</a></p>
<p><a href="http://www.sitepoint.com/article/principles-beautiful-web-design" title="145.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/145.jpg" alt="145.jpg" /></a></p>
<p><a href="http://bokardo.com/archives/five-principles-to-design-by/">Five Principles to Design</a></p>
<p><a href="http://bokardo.com/archives/five-principles-to-design-by/" title="146.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/146.jpg" alt="146.jpg" /></a></p>
<p><a href="http://yuiblog.com/blog/2007/01/17/event-plan/">Event &#8211; Web Application Design</a></p>
<p><a href="http://yuiblog.com/blog/2007/01/17/event-plan/" title="147.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/147.jpg" alt="147.jpg" /></a></p>
<p><a href="http://headrush.typepad.com/creating_passionate_users/2006/12/dont_make_the_d.html">Creating Passionate Users</a></p>
<p><a href="http://headrush.typepad.com/creating_passionate_users/2006/12/dont_make_the_d.html" title="148.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/148.jpg" alt="148.jpg" /></a></p>
<p><a href="http://www.factorycity.net/projects/microformats-icons/">Microformats Icons</a></p>
<p><a href="http://www.factorycity.net/projects/microformats-icons/" title="149.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/149.jpg" alt="149.jpg" /></a></p>
<p><a href="http://www.adaptivepath.com/ideas/essays/archives/000656.php">adaptive path</a></p>
<p><a href="http://www.adaptivepath.com/ideas/essays/archives/000656.php" title="150.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/150.jpg" alt="150.jpg" /></a></p>
<p><a href="http://www.molly.com/2006/07/25/informme-please/">molly.com</a></p>
<p><a href="http://www.molly.com/2006/07/25/informme-please/" title="151.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/151.jpg" alt="151.jpg" /></a></p>
<p><a href="http://www.boxesandarrows.com/view/the_elements_of">The Elements of Style</a></p>
<p><a href="http://www.boxesandarrows.com/view/the_elements_of" title="152.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/152.jpg" alt="152.jpg" /></a></p>
<p><a href="http://www.brokenkode.com/archives/shuttle-launched/">Broken Kode</a></p>
<p><a href="http://www.brokenkode.com/archives/shuttle-launched/" title="153.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/153.jpg" alt="153.jpg" /></a></p>
<p><a href="http://johnoxton.co.uk/article/23/scalable-logos">johnoxton.co.uk</a></p>
<p><a href="http://johnoxton.co.uk/article/23/scalable-logos" title="154.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/154.jpg" alt="154.jpg" /></a></p>
<p><a href="http://openwebdesign.org/">Open Web Design</a></p>
<p><a href="http://openwebdesign.org/" title="155.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/155.jpg" alt="155.jpg" /></a></p>
<img src="http://feeds.feedburner.com/~r/CssConcept/~4/jxVFLhamM2g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/resources/css-a-way-to-lead-to-master-design/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cssconcept.com/resources/css-a-way-to-lead-to-master-design</feedburner:origLink></item>
		<item>
		<title>Centering an image in a div</title>
		<link>http://feedproxy.google.com/~r/CssConcept/~3/SJEhKjMymaE/centering-an-image-in-a-div</link>
		<comments>http://www.cssconcept.com/tutorials/centering-an-image-in-a-div#comments</comments>
		<pubDate>Thu, 29 May 2008 18:59:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/tutorials/centering-an-image-in-a-div</guid>
		<description><![CDATA[  For centering  images inside  a div with CSS you need to apply the following steps. If your HTML code looks like this :
HTML code: 

The next move is to apply display:block; for the image and set the margins (left and right) to &#8216;auto&#8217; like this :

CSS code:
 
For Vertical-Align
CSS code:

It would be perfect if you [...]]]></description>
			<content:encoded><![CDATA[<p>  For centering  images inside  a div with CSS you need to apply the following steps. If your HTML code looks like this :</p>
<p><strong>HTML code: </strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/133.jpg" title="133.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/133.jpg" alt="133.jpg" /></a></p>
<p>The next move is to apply display:block; for the image and set the margins (left and right) to &#8216;auto&#8217; like this :</p>
<p><span id="more-569"></span></p>
<p><strong>CSS code:</strong></p>
<p><strong> </strong><a href="http://cssconcept.com/wp-content/uploads/2008/05/135.jpg" title="135.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/135.jpg" alt="135.jpg" /></a></p>
<h3><strong>For Vertical-Align</strong></h3>
<p><strong>CSS code:</strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/135.jpg" title="135.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/135.jpg" alt="135.jpg" /></a></p>
<p>It would be perfect if you could split vertical-align:middle on the image, like:</p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/136.jpg" title="136.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/136.jpg" alt="136.jpg" /></a></p>
<p><strong>we will use <code>line-height</code> equal to the height of our container:</strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/137.jpg" title="137.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/137.jpg" alt="137.jpg" /></a></p>
<p><strong> equal amount of <code>font-size:</code></strong></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/138.jpg" title="138.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/138.jpg" alt="138.jpg" /></a></p>
<p><strong>That&#8217;s all here..</strong></p>
<img src="http://feeds.feedburner.com/~r/CssConcept/~4/SJEhKjMymaE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/tutorials/centering-an-image-in-a-div/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cssconcept.com/tutorials/centering-an-image-in-a-div</feedburner:origLink></item>
		<item>
		<title>Styles used Everytime I start a new site</title>
		<link>http://feedproxy.google.com/~r/CssConcept/~3/ZXvWtFILCvQ/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>
<img src="http://feeds.feedburner.com/~r/CssConcept/~4/ZXvWtFILCvQ" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://www.cssconcept.com/css/styles-used-everytime-i-start-a-new-site</feedburner:origLink></item>
		<item>
		<title>Different Styles to IE6 and IE7</title>
		<link>http://feedproxy.google.com/~r/CssConcept/~3/fyk5EWNHOpo/different-styles-to-ie6-and-ie7</link>
		<comments>http://www.cssconcept.com/tutorials/different-styles-to-ie6-and-ie7#comments</comments>
		<pubDate>Thu, 29 May 2008 17:50:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssconcept.com/tutorials/different-styles-to-ie6-and-ie7</guid>
		<description><![CDATA[   Web developers are very familiar with conditional comments when it comes to serve styles for certain versions of Internet Explorer. Though multiple conditional comments are able to be used. We have here an example of what can be used in this type of coding.
 CSS code:


]]></description>
			<content:encoded><![CDATA[<p>   Web developers are very familiar with conditional comments when it comes to serve styles for certain versions of Internet Explorer. Though multiple conditional comments are able to be used. We have here an example of what can be used in this type of coding.</p>
<h2><strong> CSS code:</strong></h2>
<p><span id="more-566"></span></p>
<p><a href="http://cssconcept.com/wp-content/uploads/2008/05/132.jpg" title="132.jpg" rel="lightbox"><img src="http://cssconcept.com/wp-content/uploads/2008/05/132.jpg" alt="132.jpg" /></a></p>
<img src="http://feeds.feedburner.com/~r/CssConcept/~4/fyk5EWNHOpo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/tutorials/different-styles-to-ie6-and-ie7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cssconcept.com/tutorials/different-styles-to-ie6-and-ie7</feedburner:origLink></item>
		<item>
		<title>Updates and news in CSS</title>
		<link>http://feedproxy.google.com/~r/CssConcept/~3/QLKgziA4Qc8/updates-and-news-in-css</link>
		<comments>http://www.cssconcept.com/resources/updates-and-news-in-css#comments</comments>
		<pubDate>Thu, 29 May 2008 14:30:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://cssconcept.com/resources/updates-and-news-in-css</guid>
		<description><![CDATA[ We have made several research and collected some of the high top CSS website resource.Tutorials, books, mailing lists for users, etc..
CSS News  : 
XTech 2008 : The Web on the Move &#8211; Improvements in browsers and research in advanced layout. 
Prince : What&#8217;s New &#8211; Prince is a computer program that converts XML [...]]]></description>
			<content:encoded><![CDATA[<p> We have made several research and collected some of the high top CSS website resource.Tutorials, books, mailing lists for users, etc..</p>
<h3><strong>CSS News  </strong>: <a href="http://2008.xtech.org/public/news"></a></h3>
<p><a href="http://2008.xtech.org/public/news">XTech 2008 : The Web on the Move</a> &#8211; Improvements in browsers and research in advanced layout. <a href="http://www.princexml.com/"></a></p>
<p><a href="http://www.princexml.com/">Prince : What&#8217;s New</a> &#8211; Prince is a computer program that converts XML and HTML into PDF documents. Prince can read many XML  formats, including XHTML and SVG. Prince formats documents according to style sheets written in CSS. <a href="http://www.westciv.com/courses/free/index.html"></a></p>
<p><a href="http://www.westciv.com/courses/free/index.html">Learning::free courses</a>  &#8211; new content and techniques <a href="http://www.cssez.com/"></a></p>
<p><a href="http://www.cssez.com/">Easy Blog Design Tool</a>  &#8211; Online Based CSS Authoring Tool/Download with wordpress or movabletype template formats/No need knowledge of CSS ,(X)HTML or blog templte tags./A lot of tools available: Image Maker, many templates etc. <a href="http://www.aureliasystems.com/dnload.htm"></a></p>
<p><a href="http://www.aureliasystems.com/dnload.htm">Aurelia Main</a> &#8211;  Aurelia Reporter 3.2 with support for Windows Vista and              Server 2003.</p>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<p><span id="more-562"></span> <a href="http://www.oxygenxml.com/download.html"></a></p>
<p><a href="http://www.oxygenxml.com/download.html">Download XML Editor or Author </a> &#8211; &lt;oXygen/&gt; XML Editor is a complete XML development platform providing the                       necessary tools for working with a wide range of XML standards and                       technologies: XML editing, XML conversion, XML Schema development, XSLT and                       XQuery execution and debugging, SOAP and WSDL testing, etc.. <a href="http://www.rikkertkoppes.com/thoughts/css-syntax/"></a></p>
<p><a href="http://www.rikkertkoppes.com/thoughts/css-syntax/">rikkertkoppes.com</a> &#8211;   CSS grammar rules difficult to read.. <a href="http://www.nongnu.org/scss/"></a></p>
<p><a href="http://www.nongnu.org/scss/">ScSS</a> &#8211;  <code></code>is a Scheme module for parsing, querying, and emitting style information compatible with the W3C Cascading Stylesheets recommendation. <a href="http://web.conf.hu/2008/"></a></p>
<p><a href="http://web.conf.hu/2008/">Web Conference </a>-Advanced Layout</p>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<p><a href="http://web.conf.hu/2008/" title="129.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/129.jpg" alt="129.jpg" /></a> <a href="http://www.html.net/tutorials/css/"></a></p>
<p><a href="http://www.html.net/tutorials/css/">CSS Tutorial &#8211; Table of contents </a> &#8211; Several new translations . <a href="http://webstandardsbook.com/"></a></p>
<p><a href="http://webstandardsbook.com/">Adapting to Web Standards</a> &#8211; book about Web standards..</p>
<ul></ul>
<ul></ul>
<h3><strong>CSS  Tools:</strong> <a href="http://www.cssez.com/"></a></h3>
<p><a href="http://www.cssez.com/">Blog Design Tool for WordPress</a> &#8211;  CSS authoring tool that has many layout templates, background image maker and others.. <a href="http://www.panic.com/coda/"></a></p>
<p><a href="http://www.panic.com/coda/">Panic-Coda-One-Window Web Development</a>  -&#8221;So, we code web sites by hand.&#8221; <a href="http://groups.google.ca/group/fr.usenet.forums.annonces/browse_thread/thread/c118d6c89c5e31c3/e823bc3dc865270a?hl=en&amp;fwc=1"></a></p>
<p><a href="http://groups.google.ca/group/fr.usenet.forums.annonces/browse_thread/thread/c118d6c89c5e31c3/e823bc3dc865270a?hl=en&amp;fwc=1">Creation de fr. comp.infosystemes</a>  &#8211; Creation of a French language group.. <a href="http://www.adobe.com/products/golive/"></a></p>
<p><a href="http://www.adobe.com/products/golive/">GoLive 9</a> &#8211;  CSS tools, layout templates, support for handheld media, etc.. <a href="http://www.maxro.de/"></a></p>
<p><a href="http://www.maxro.de/">Maxro</a> &#8211; CSS Designer 2.0. <a href="http://macrabbit.com/"></a></p>
<p><a href="http://macrabbit.com/">MacRabbit</a> &#8211; CSS editor with preview. <a href="http://www.evrsoft.com/1stpage2.shtml"></a></p>
<p><a href="http://www.evrsoft.com/1stpage2.shtml">Evrsoft 1st Page 2000 </a> &#8211; CSS reference, wizards, etc.</p>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<p><a href="http://www.w3.org/Style/CSS/" title="130.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/130.jpg" alt="130.jpg" /></a> <a href="http://www.westciv.com/style_master/"></a></p>
<p><a href="http://www.westciv.com/style_master/">Style Master CSS editor</a> &#8211; CSS editor with preview, info about browser compatibility . <a href="http://www.hostm.com/css/"></a></p>
<p><a href="http://www.hostm.com/css/">Simple CSS &#8211; HostM.com</a>  &#8211; Manage multiple CSS projects and import existing style sheets . <a href="http://www.sausage.com/error.html"></a></p>
<p><a href="http://www.sausage.com/error.html">HotDog Web Editors</a> &#8211; Editor now supports CSS. <a href="http://www.geocities.com/w2css/"></a></p>
<p><a href="http://www.geocities.com/w2css/">W2CSS</a> &#8211;  W2CSS translator is a large MS Word macro (program) that takes as input, an  MS Word document and produces as output, an HTML file. <a href="http://www.athlab.com/"></a></p>
<p><a href="http://www.athlab.com/">Abstract thought lab</a> &#8211; Editor in CSS2.. <a href="http://www.newsgator.com/Individuals/TopStyle/Default.aspx"></a></p>
<p><a href="http://www.newsgator.com/Individuals/TopStyle/Default.aspx">HTML, xHTML and CSS Editor</a> &#8211; The program offers many unique features, including the option to upgrade your HTML documents by replacing outdated markup with equivalent styling. <a href="http://interaction.in-progress.com/components/style"></a></p>
<p><a href="http://interaction.in-progress.com/components/style">CSS Manager</a> &#8211; The CSS Manager adds an <strong>Style Sheet</strong> item to the Windows menu of Interaction. <a href="http://www.optima-system.com/pagespinner/"></a></p>
<p><a href="http://www.optima-system.com/pagespinner/">PageSpinner</a> &#8211;  PageSpinner is an easy-to-use, professional web page editor for Mac OS supporting HTML, XHTML, PHP, SSI, CSS with a built-in JavaScript generator. <a href="http://cascades.mozdev.org/"></a></p>
<p><a href="http://cascades.mozdev.org/">Mozdev.org</a>  &#8211; CaScadeS is a stylesheet editor for Composer, the HTML editor of Mozilla/Netscape.</p>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<p><a href="http://cascades.mozdev.org/" title="131.jpg"><img src="http://cssconcept.com/wp-content/uploads/2008/05/131.jpg" alt="131.jpg" /></a> <a href="http://www.coffeecup.com/style/"></a></p>
<p><a href="http://www.coffeecup.com/style/">CoffeeCup</a> &#8211; It creates CSS style sheets .<br />
<a href="http://www.ucware.com/juststyle/"><br />
JustStyle CSS Editor</a>  &#8211; JustStyle CSS Editor is full-feature, yet easy-to-use, software for webmasters .. <a href="http://quanta.kdewebdev.org/"></a></p>
<p><a href="http://quanta.kdewebdev.org/">Quanta Plus Home </a>-  Quanta Plus is a highly stable and feature rich web development environment. The vision with Quanta has always been to start with the best architectural foundations, design for efficient and natural use and enable maximal user extensibility. <a href="http://www.styleassistant.de/"></a></p>
<p><a href="http://www.styleassistant.de/">StyeleAssistant</a> &#8211; Writes CSS1 style sheets.. <a href="http://www.software602.com/"></a></p>
<p><a href="http://www.software602.com/">Software602 Incorporated</a> &#8211; Edit HTML+CSS <a href="http://www.opensource.org/"></a></p>
<p><a href="http://www.opensource.org/">Open Source</a> &#8211; Open source is a development method for software that harnesses the power of distributed peer review and trasnarency of process. <a href="http://na.justsystems.com/index.php"></a></p>
<p><a href="http://na.justsystems.com/index.php">JustSystem </a>-  displays XML documents with CSS style sheets <a href="http://hem.fyristorg.com/alpha_www_tools/"></a></p>
<p><a href="http://hem.fyristorg.com/alpha_www_tools/">Alpha </a>- by Pete Keleher, is an  		incredibly cool shareware programming editor which has more than 25  		different modes, one for each programming language in the  universe, for  		example C/C++, Java, Perl.</p>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<ul></ul>
<h3><strong><br />
</strong></h3>
<img src="http://feeds.feedburner.com/~r/CssConcept/~4/QLKgziA4Qc8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cssconcept.com/resources/updates-and-news-in-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cssconcept.com/resources/updates-and-news-in-css</feedburner:origLink></item>
	</channel>
</rss>

