<?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>KADIMI &#187; CSS</title>
	<atom:link href="http://www.kadimi.com/en/webdesign/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kadimi.com/en</link>
	<description>[Web developper, Linux addict, Technical translator...]</description>
	<lastBuildDate>Sun, 15 Jan 2012 10:48:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Opera: CSS rotation and other transformations</title>
		<link>http://www.kadimi.com/en/opera-css-rotation-382</link>
		<comments>http://www.kadimi.com/en/opera-css-rotation-382#comments</comments>
		<pubDate>Fri, 01 Jan 2010 17:49:54 +0000</pubDate>
		<dc:creator>Nabil</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[rotation]]></category>

		<guid isPermaLink="false">http://www.kadimi.com/en/?p=382</guid>
		<description><![CDATA[After the release of Opera 10.5 Alpha, it&#8217;s now be possible to rotate elements, this new release includes support for CSS3 rotation and other transitions and transforms, we may not longer need JavaScript for some basic transformations, have a taste: Download Opera 10.5 Alpha See the demonstration The demonstration doesn&#8217;t show rotation, so the CSS [...]]]></description>
			<content:encoded><![CDATA[<p>After the release of Opera 10.5 Alpha, it&#8217;s now be possible to rotate elements, this new release includes support for CSS3 rotation and other transitions and transforms, we may not longer need JavaScript for some basic transformations, have a taste:</p>
<ul>
<li>Download <a href="http://labs.opera.com/downloads/">Opera 10.5 Alpha</a></li>
<li>See the <a href="http://people.opera.com/dstorey/transitions/multiple-transitions.html">demonstration</a></li>
</ul>
<p>The demonstration doesn&#8217;t show rotation, so the CSS for rotation under Opera is:</p>
<blockquote>
<pre><code>-o-transform:rotate(90deg);</code></pre>
</blockquote>
<h2>FYI</h2>
<p>When you install Opera 10.5 Alpha, your previous installation of Opera (Stable) is not removed, giving you the chance to test and compare&#8230;</p>
<h2>Read</h2>
<p>Find more about Crossbrowser CSS rotation at <a href="http://samuli.hakoniemi.net/cross-browser-rotation-transformation-with-css/">hakoniemi&#8217;s blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kadimi.com/en/opera-css-rotation-382/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to style input fields with CSS?</title>
		<link>http://www.kadimi.com/en/styling-input-fields-97</link>
		<comments>http://www.kadimi.com/en/styling-input-fields-97#comments</comments>
		<pubDate>Fri, 05 Jun 2009 11:13:56 +0000</pubDate>
		<dc:creator>Nabil</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.kadimi.com/en/?p=97</guid>
		<description><![CDATA[<a href="http://www.kadimi.com/en/styling-input-fields-97"><img align="left" hspace="5" width="150" src="http://www.kadimi.com/en/wp-content/uploads/bad_input_css.jpg" class="alignleft wp-post-image tfe" alt="bad input css" title="" /></a>There are situations where you need to style input fields depending on there types. Doing this is wrong: input{ border:solid 1px red; } As you see in the image, the CSS rule has been applied to all input fields (a text input field, and an image input) You can specify the type of input field [...]]]></description>
			<content:encoded><![CDATA[<p>There are situations where you need to style input fields depending on there types.</p>
<p>Doing this is wrong:</p>
<blockquote>
<pre><code>input{
    border:solid 1px red;
}</code>
<img class="alignnone size-full wp-image-102" src="http://www.kadimi.com/en/wp-content/uploads/bad_input_css.jpg" alt="bad input css" /></pre>
</blockquote>
<p>As you see in the image, the CSS rule has been applied to all input fields<span id="more-97"></span> (a text input field, and an image input)</p>
<p>You can specify the type of input field that you are targeting by doing like this:</p>
<blockquote>
<pre><code>input[type="password"]{
    border:solid 1px red;
}</code>
<img class="alignnone size-full wp-image-102" src="http://www.kadimi.com/en/wp-content/uploads/good_input_css.jpg" alt="good input css" /></pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kadimi.com/en/styling-input-fields-97/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

