<?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>Code &#38; Config - sharing the smart bits &#187; CSS</title>
	<atom:link href="http://code.lewro.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://code.lewro.com</link>
	<description>Code &#38; Config - sharing the smart bits</description>
	<lastBuildDate>Sun, 22 Jan 2012 13:30:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Word Wrap &#8211; forgotten CSS property</title>
		<link>http://code.lewro.com/css/word-wrap-forgotten-css-property/</link>
		<comments>http://code.lewro.com/css/word-wrap-forgotten-css-property/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 10:32:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://code.lewro.com/?p=188</guid>
		<description><![CDATA[ ]]></description>
			<content:encoded><![CDATA[<p>One of the CSS properties which is not very well know but very useful is called word-wrap. It allows you to break long single words which do not fit into specified space. So instead of hiding the problem with overflow: hidden use the following.</p>
<p>You can for example defined a class called &#8220;break_word&#8221; and apply it to the situation we have just described. You can&#8217;t think of an example? Think about long URLs.</p>
<pre class="brush: css;">
.break_word {
    word-wrap: break-word;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://code.lewro.com/css/word-wrap-forgotten-css-property/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple background images with CSS 3.0</title>
		<link>http://code.lewro.com/css/multiple-background-images-with-css-3-0/</link>
		<comments>http://code.lewro.com/css/multiple-background-images-with-css-3-0/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 15:15:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://code.lewro.com/?p=118</guid>
		<description><![CDATA[As CSS 3.0 support improves across the current browsers it might be good to start learning this new CSS properties. I would only use it for images which are not fundamental for site because the browser support does not include Internet Explorer 7 which has huge market share. #yourdiv { background: url(image_1.png) -100px -100px no-repeat, [...]]]></description>
			<content:encoded><![CDATA[<p>As CSS 3.0 support improves across the current browsers it might be good to start learning this new CSS properties.<br />
I would only use it for images which are not fundamental for site because the browser support does not include Internet Explorer 7 which has huge market share. </p>
<pre class="brush: css;">
#yourdiv {
  background:
    url(image_1.png) -100px -100px no-repeat,
    url(image_2.png)   0px -10px no-repeat,
    url(image_3.png)  20px 20px no-repeat,
    url(image_4.png)  -20px -40px no-repeat,
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://code.lewro.com/css/multiple-background-images-with-css-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounded corners with CSS3</title>
		<link>http://code.lewro.com/css/rounded-corners-with-css3/</link>
		<comments>http://code.lewro.com/css/rounded-corners-with-css3/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 20:44:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://code.lewro.com/?p=96</guid>
		<description><![CDATA[The support of browsers for rounded corners has not reached the level so we could use as default solution but there are always part of the site where it kind of make sense to use it. What i mean is that it will not really break the visual experience if the corners will not be [...]]]></description>
			<content:encoded><![CDATA[<p>The support of browsers for rounded corners has not reached the level so we could use as default solution but there are always part of the site where it kind of make sense to use it. What i mean is that it will not really break the visual experience if the corners will not be rounded in some browsers (we talking Internet Explorer here).</p>
<p>The support for rounded corners is not the same across the browsers but there are ways around. This is what you need to do so the rounded corners syntax is understood by all browsers who are able to handle it.</p>
<p>Lets say we have class called &#8220;rounded_corners&#8221; we want to apply the rounded corners.</p>
<pre class="brush: css;">
.rounded_corners {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
</pre>
<p>I would recommend to store this syntax as snippet if you text editor supports code snippets. You could assign shortcut such is &#8220;round&#8221; which would bring both of this CSS properties so you do not have to remember them. They are not the best to remember. Coda and TextMate supports code snippets.</p>
]]></content:encoded>
			<wfw:commentRss>http://code.lewro.com/css/rounded-corners-with-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

