<?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 elements</title>
	<atom:link href="http://csselements.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://csselements.com</link>
	<description>Online guide to CSS elements</description>
	<lastBuildDate>Thu, 09 Jul 2009 21:59:17 +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>Creating Menus with CSS</title>
		<link>/?p=7</link>
		<comments>/?p=7#comments</comments>
		<pubDate>Thu, 09 Jul 2009 21:59:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css properties]]></category>
		<category><![CDATA[learning css]]></category>
		<category><![CDATA[tips & tricks]]></category>

		<guid isPermaLink="false">http://csselements.com/?p=7</guid>
		<description><![CDATA[The second round of modifications to the menu_style.css style sheet in this example involves making each list of navigation links into drop-down menus. First a display: none; declaration is supplied to the ul.menu selector to hide all the menus. The display: none; declaration prevents the browser from rendering the menu &#60;ul&#62; elements. Then, the :hover [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The second round of modifications to the menu_style.css style sheet in this example involves making each list of navigation links into drop-down menus. First a display: none; declaration is supplied to the ul.menu selector to hide all the menus. The display: none; declaration prevents the browser from rendering the menu &lt;ul&gt; elements. Then, the :hover pseudo-class is applied to make those menus reappear if the user’s mouse cursor hovers over a navigational heading:</p>
<p style="text-align: justify;">div#nav &gt; div &gt; ul &gt; li:hover &gt; ul.menu,<br />
ul.menu:hover {<br />
display: block;<br />
}</p>
<p style="text-align: justify;">The first selector in this example works using the same direct child relationship that you’ve observed before. Essentially what you are stating here is the following: If the nav &lt;div&gt; element has a child &lt;div&gt; element, and that child &lt;div&gt; element has a &lt;ul&gt; child element, and that child &lt;ul&gt; element has a &lt;li&gt; element that the user’s mouse is hovering over, and that &lt;li&gt; element has a &lt;ul&gt; element with a menu class name, display it as a block element. This creates the effect of dynamic drop-down menus using CSS. The second selector is applied merely as a logical precaution. If the user’s mouse is hovering over a &lt;ul&gt; element with a menu class name, for example any submenu, you continue to display that element as a block element.</p>
]]></content:encoded>
			<wfw:commentRss>http://csselements.com/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Layers in CSS</title>
		<link>/?p=5</link>
		<comments>/?p=5#comments</comments>
		<pubDate>Sat, 04 Jul 2009 15:12:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css properties]]></category>
		<category><![CDATA[learning css]]></category>
		<category><![CDATA[tips & trick]]></category>

		<guid isPermaLink="false">http://csselements.com/?p=5</guid>
		<description><![CDATA[You modify the menu_system.css style sheet in two key areas. The first modification involved controlling the layering of the JT’s logo, so that the JT’s logo is always on top. To do this, you apply a z-index: 1; declaration to the rule for the JT’s logo. This demonstrates that an integer provided to the z-index [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You modify the menu_system.css style sheet in two key areas. The first modification involved controlling the layering of the JT’s logo, so that the JT’s logo is always on top. To do this, you apply a z-index: 1; declaration to the rule for the JT’s logo. This demonstrates that an integer provided to the z-index property, which specifies layering by providing a number, takes precedence over the auto z-index. This means that the auto z-index is determined first, and then elements with a numbered z-index appear above those with an auto z-index. In this scenario, this eliminates the need to explicitly specify a z-index for any of the other elements.</p>
]]></content:encoded>
			<wfw:commentRss>http://csselements.com/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Background Formatting with CSS</title>
		<link>/?p=3</link>
		<comments>/?p=3#comments</comments>
		<pubDate>Wed, 01 Jul 2009 11:38:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css properties]]></category>
		<category><![CDATA[learning css]]></category>
		<category><![CDATA[tips & tricks]]></category>

		<guid isPermaLink="false">http://csselements.com/?p=3</guid>
		<description><![CDATA[The first &#60;div&#62; in the sequence of four is given a light yellow background and some basic dimensions and properties that also apply to the other &#60;div&#62; elements. Then, by using the adjacent sibling selector, I select the subsequent &#60;div&#62; elements and provide those with different backgrounds and a decrementing z-index value. This results in [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The first &lt;div&gt; in the sequence of four is given a light yellow background and some basic dimensions and properties that also apply to the other &lt;div&gt; elements. Then, by using the adjacent sibling selector, I select the subsequent &lt;div&gt; elements and provide those with different backgrounds and a decrementing z-index value. This results in the &lt;div&gt; with a light yellow background being displayed on top, followed by the &lt;div&gt; with the light blue background, followed by the &lt;div&gt; with the light green background, and finally the &lt;div&gt; with a pink background is shown at the back of the stack. This example demonstrates that the highest z-index value appears highest on the z-axis, or if you envision an invisible line perpendicular to the computer screen, the highest z-index appears furthest toward the user on that invisible line. If I omit the z-index property from the example shown in the previous post, the value of the z-index property becomes auto, and the stack along the z-axis is determined by the document flow.</p>
<p style="text-align: justify;">For instance, the first element with positioning applied appears on the bottom of the stack, and each subsequent element appears one higher. The last element in the document with positioning receives the highest z-index value. Omitting the z-index value is demonstrated in the next post.</p>
]]></content:encoded>
			<wfw:commentRss>http://csselements.com/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
