<?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>Kristof Neirynck &#187; css</title>
	<atom:link href="http://www.crydust.be/blog/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.crydust.be/blog</link>
	<description>yet another webdev blog</description>
	<lastBuildDate>Wed, 05 May 2010 16:13:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Css in Flex</title>
		<link>http://www.crydust.be/blog/2008/08/29/css-in-flex/</link>
		<comments>http://www.crydust.be/blog/2008/08/29/css-in-flex/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 15:58:26 +0000</pubDate>
		<dc:creator>Kristof Neirynck</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.crydust.be/blog/?p=68</guid>
		<description><![CDATA[I had some issues today to change the background color of a button in Flex. The up-skin was set for the Button selector which meant setting the fill-colors property for the Button.special selector had no effect. Setting the up-skin to null was the only solution. This was easy to do in code with setStyle, but [...]]]></description>
			<content:encoded><![CDATA[<p>
I had some issues today to change the background color of a button in Flex. The up-skin was set for the Button selector which meant setting the fill-colors property for the Button.special selector had no effect. Setting the up-skin to null was the only solution. This was easy to do in code with setStyle, but I wanted to do it in css. Writing null wasn&#8217;t quite enough. Apearently you need to use ClassReference(null). Hope this helps someone out.
</p>

<pre>
Button {
  up-skin: Embed(source='img/example.png');
}
Button.special{
  <strong>up-skin: ClassReference(null);</strong>
  fill-alphas: 1.0, 1.0;
  fill-colors: #00FF00, #00FF00;
}
</pre>]]></content:encoded>
			<wfw:commentRss>http://www.crydust.be/blog/2008/08/29/css-in-flex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS Layouts in Dreamweaver CS3 &#8211; Multi-Mania 2007 notes</title>
		<link>http://www.crydust.be/blog/2007/05/29/css-layouts-in-dreamweaver-cs3-multi-mania-2007-notes/</link>
		<comments>http://www.crydust.be/blog/2007/05/29/css-layouts-in-dreamweaver-cs3-multi-mania-2007-notes/#comments</comments>
		<pubDate>Tue, 29 May 2007 00:41:25 +0000</pubDate>
		<dc:creator>Kristof Neirynck</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.crydust.be/blog/2007/05/29/css-layouts-in-dreamweaver-cs3-multi-mania-2007-notes/</guid>
		<description><![CDATA[25-5-2007, 10:30am &#8211; CSS Layouts in Dreamweaver CS3 by Stephanie Sullivan Css positioning has allways been hard. The css starter pages Stephanie created for Dreamweaver CS3 are therefore more than welcome. Lessons learned: Clearing a float in a non-floated element will clear the floats that are outside that element. So you need to float that [...]]]></description>
			<content:encoded><![CDATA[<p>25-5-2007, 10:30am &#8211; CSS Layouts in Dreamweaver CS3 by Stephanie Sullivan</p>
<p>Css positioning has allways been hard. The <a href="http://www.adobe.com/devnet/dreamweaver/articles/css_starter_pages.html">css starter pages</a> Stephanie created for Dreamweaver CS3 are therefore more than welcome.</p>
<p>Lessons learned:</p>
<ul>
<li>Clearing a float in a non-floated element will clear the floats that are outside that element. So you need to float that surrounding element and optionally give it a with of 100%.</li>
<li>Clearing a float can be done with a br, hr or div. I prefer <a href="http://annevankesteren.nl/2005/03/clearing-floats">Super simple clearing floats by Anne van Kesteren</a>, but this way is indeed easier to understand.</li>
<li>Float drop occurs when a float doesn&#8217;t have enough room. This requires you never to use images larger than the column width.</li>
<li>Stephanie mentions <a href="http://www.communitymx.com/content/article.cfm?page=1&#038;cid=AFC58">Creating Liquid Faux Columns</a>, an article from 2004 which I had forgotten all about. Very interesting.</li>
<li>Stretchy headers are mentioned. Anice technique in which the background image is wider than it should be. Thus when the width of the design increases you see more of the background image.</li>
<li>The <a href="http://www.adobe.com/cfusion/communityengine/index.cfm?event=homepage&#038;productId=1">CSS Advisor</a> wiki is up and running. Loads of tips there. It&#8217;s a great companion to the <a href="http://css-discuss.incutio.com/">css-discuss Wiki</a>.</li>
</ul>
<p>Seeing all this css goodness made me hungry for more. So I created my own <a href="http://www.crydust.be/lab/style/three_columns_fixed_width/">three columns fixed width layout</a>. I&#8217;m quite pleased with the result. It doesn&#8217;t need any hacks except for internet explorer older than version 7.</p>]]></content:encoded>
			<wfw:commentRss>http://www.crydust.be/blog/2007/05/29/css-layouts-in-dreamweaver-cs3-multi-mania-2007-notes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
