<?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>:: a z y u r e . c o m :: &#187; css</title>
	<atom:link href="http://www.azyure.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.azyure.com</link>
	<description>the home of the cass</description>
	<lastBuildDate>Sun, 25 Jul 2010 19:02:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>background transparency on div with solid text &#8211; all browsers</title>
		<link>http://www.azyure.com/2010/03/24/background-transparency-on-div-with-solid-text-all-browsers/</link>
		<comments>http://www.azyure.com/2010/03/24/background-transparency-on-div-with-solid-text-all-browsers/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 10:50:44 +0000</pubDate>
		<dc:creator>azyure</dc:creator>
				<category><![CDATA[code bits]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[transparency]]></category>
		<category><![CDATA[transparent]]></category>

		<guid isPermaLink="false">http://www.azyure.com/?p=434</guid>
		<description><![CDATA[Text in transparent box &#8211; all browsers IE6 / IE7 / FF/ Safari / Opera
The css looks like this:

div.background
  {
  width:500px;
  height:250px;
  background:url(klematis.jpg) repeat;
  border:2px solid black;
  }
div.transbox
  {
  width:400px;
  height:180px;
  margin:30px 50px;
  background-color:#ffffff;
  border:1px solid black;
  /* for IE */
  [...]]]></description>
			<content:encoded><![CDATA[<p>Text in transparent box &#8211; all browsers IE6 / IE7 / FF/ Safari / Opera</p>
<p>The css looks like this:</p>
<style type="text/css">
div.background
  {
  width:500px;
  height:250px;
  background:url(klematis.jpg) repeat;
  border:2px solid black;
  }
div.transbox
  {
  width:400px;
  height:180px;
  margin:30px 50px;
  background-color:#ffffff;
  border:1px solid black;
  /* for IE */
  filter:alpha(opacity=60);
  /* CSS3 standard */
  opacity:0.6;
  }
div.transbox p
  {
  margin:30px 40px;
  font-weight:bold;
  color:#000000;
  }
</style>
<p>and the html looks like this:</p>
<div class="background">
<div class="transbox">
<p>This is some text that is placed in the transparent box.</p>
</p></div>
</div>
<p>This came from: http://www.w3schools.com/Css/css_image_transparency.asp</p>
]]></content:encoded>
			<wfw:commentRss>http://www.azyure.com/2010/03/24/background-transparency-on-div-with-solid-text-all-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>accessibile css styled headings h1/h2/h3&#8217;s and menu navigation</title>
		<link>http://www.azyure.com/2009/07/14/accessibile-css-styles/</link>
		<comments>http://www.azyure.com/2009/07/14/accessibile-css-styles/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 14:57:49 +0000</pubDate>
		<dc:creator>azyure</dc:creator>
				<category><![CDATA[code bits]]></category>
		<category><![CDATA[accessibile]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[headings]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[overflow:hidden]]></category>

		<guid isPermaLink="false">http://www.azyure.com/?p=355</guid>
		<description><![CDATA[This is for heading/navigation etc.  It allows you to style images so they degrade gracefully (if the image is broken etc &#8211; it will show the text)
Is accessible!
Can be used on h1/h2/h3 etc for headings with a div/span or with an ul/li/a tag for a menu/navigation &#8211; can combine lots of combinations
H1 example
&#60;div id=&#8221;contentMain&#8221;&#62;
&#60;h1 class=&#8221;heading&#8221;&#62;Heading&#60;/h1&#62;
&#60;/div&#62;
#content [...]]]></description>
			<content:encoded><![CDATA[<p>This is for heading/navigation etc.  It allows you to style images so they degrade gracefully (if the image is broken etc &#8211; it will show the text)</p>
<p>Is accessible!</p>
<p>Can be used on h1/h2/h3 etc for headings with a div/span or with an ul/li/a tag for a menu/navigation &#8211; can combine lots of combinations</p>
<p><strong>H1 example</strong></p>
<p>&lt;div id=&#8221;contentMain&#8221;&gt;</p>
<p>&lt;h1 class=&#8221;heading&#8221;&gt;Heading&lt;/h1&gt;</p>
<p>&lt;/div&gt;</p>
<p>#content h1<br />
{<br />
display:block;<br />
height: 0px;<br />
padding-top:23px; (this is the height of the image)<br />
overflow:hidden;<br />
color: #444444;<br />
}<br />
#contentMain h1.heading<br />
{<br />
background:transparent url(~/url/to/the/image/heading.gif) no-repeat left top;<br />
}</p>
<p>&lt;ul id=&#8221;mainMenu&#8221;&gt;<br />
&lt;li id=&#8221;home&#8221;&gt;&lt;a href=&#8221;home.htm&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</p>
<p><strong>Active Page</strong><br />
&lt;ul id=&#8221;mainMenu&#8221;&gt;<br />
&lt;li id=&#8221;home&#8221;&gt;&lt;a href=&#8221;home.htm&#8221; class=&#8221;highlighted&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</p>
<p>#mainMenu<br />
{<br />
float: left;<br />
list-style: none;<br />
overflow: hidden;<br />
padding-top: 40px;<br />
text-decoration: none;<br />
}</p>
<p>#mainMenu #home a<br />
{<br />
display:block;<br />
height: 40px;<br />
width: 100px;<br />
background: url(~/url/to/the/image/Home_Off.png);<br />
background-repeat: no-repeat;<br />
}<br />
#mainMenu #home a:hover, #mainMenu #home .highlighed (for when you roll over &amp; on the active page)<br />
{<br />
display:block;<br />
height: 40px;<br />
width: 100px;<br />
background: url(~/url/to/the/image/Home_Off.png);<br />
background-repeat: no-repeat;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.azyure.com/2009/07/14/accessibile-css-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Center align site using CSS</title>
		<link>http://www.azyure.com/2009/06/17/center-align-site-using-css/</link>
		<comments>http://www.azyure.com/2009/06/17/center-align-site-using-css/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 08:25:35 +0000</pubDate>
		<dc:creator>azyure</dc:creator>
				<category><![CDATA[code bits]]></category>
		<category><![CDATA[align]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.azyure.com/?p=344</guid>
		<description><![CDATA[HTML bit
&#60;body&#62;
&#60;div id="wrapper"&#62;
**Rest of site goes here**
&#60;/div&#62;
&#60;/body&#62;
CSS bit
body {
text-align: center;
}
#container {
margin: 0 auto;
width: ***px;
} 
]]></description>
			<content:encoded><![CDATA[<p>HTML bit</p>
<p><code>&lt;body&gt;<br />
&lt;div id="wrapper"&gt;<br />
**Rest of site goes here**<br />
&lt;/div&gt;<br />
&lt;/body&gt;</code></p>
<p>CSS bit</p>
<p><code>body {<br />
text-align: center;<br />
}</p>
<p>#container {<br />
margin: 0 auto;<br />
width: ***px;<br />
} </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.azyure.com/2009/06/17/center-align-site-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
