<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Real text rotation with CSS</title>
	<atom:link href="http://www.thecssninja.com/css/real-text-rotation-with-css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thecssninja.com/css/real-text-rotation-with-css</link>
	<description>All things CSS, JavaScript &#38; HTML</description>
	<lastBuildDate>Sat, 21 Jan 2012 04:46:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Famiso</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-5304</link>
		<dc:creator>Famiso</dc:creator>
		<pubDate>Thu, 19 Jan 2012 18:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-5304</guid>
		<description>Since IE9 is better to use _ hack, because IE9 support both methods. 

_writing-mode: tb-rl;
-webkit-transform: rotate(90deg);	
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);</description>
		<content:encoded><![CDATA[<p>Since IE9 is better to use _ hack, because IE9 support both methods. </p>
<p>_writing-mode: tb-rl;<br />
-webkit-transform: rotate(90deg);<br />
-moz-transform: rotate(90deg);<br />
-ms-transform: rotate(90deg);<br />
-o-transform: rotate(90deg);<br />
transform: rotate(90deg);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thiyagarajan Veluchamy</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-2901</link>
		<dc:creator>Thiyagarajan Veluchamy</dc:creator>
		<pubDate>Wed, 09 Nov 2011 08:27:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-2901</guid>
		<description>use,

&lt;pre lang=&quot;css&quot;&gt;
display:block;
writing-mode: tb-rl;
-webkit-transform: rotate(90deg);	
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
&lt;/pre&gt;

its working well on all browsers.</description>
		<content:encoded><![CDATA[<p>use,</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span>;
writing-mode<span style="color: #00AA00;">:</span> tb-rl;
-webkit-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>90deg<span style="color: #00AA00;">&#41;</span>;	
-moz-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>90deg<span style="color: #00AA00;">&#41;</span>;
-ms-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>90deg<span style="color: #00AA00;">&#41;</span>;
-o-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>90deg<span style="color: #00AA00;">&#41;</span>;
transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>90deg<span style="color: #00AA00;">&#41;</span>;</pre></div></div>

<p>its working well on all browsers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-2786</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 01 Nov 2011 13:20:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-2786</guid>
		<description>Looks like the support for this cross browser is finally getting some headway. Just got to ask all my clients to shift over to modern browsers now!

Anyway, for those who like this sort of thing &quot;copy and paste&quot; http://www.cssrotate.com is one of those sites that&#039;ll generate the CSS code for you.</description>
		<content:encoded><![CDATA[<p>Looks like the support for this cross browser is finally getting some headway. Just got to ask all my clients to shift over to modern browsers now!</p>
<p>Anyway, for those who like this sort of thing &#8220;copy and paste&#8221; <a href="http://www.cssrotate.com" rel="nofollow">http://www.cssrotate.com</a> is one of those sites that&#8217;ll generate the CSS code for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RJ</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-2785</link>
		<dc:creator>RJ</dc:creator>
		<pubDate>Tue, 01 Nov 2011 06:30:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-2785</guid>
		<description>Sweet I got this  working on IE9 at -10deg, honestly I designed my page to be &lt;b&gt;&lt;i&gt;Alright&lt;/i&gt;&lt;/b&gt; without the rotation, you just get the extra fun in the page if you keep your browser up to date. They should force everyone in the world to upgrade to CSS3 compatible browsers, discontinue IE8 and below.</description>
		<content:encoded><![CDATA[<p>Sweet I got this  working on IE9 at -10deg, honestly I designed my page to be <b><i>Alright</i></b> without the rotation, you just get the extra fun in the page if you keep your browser up to date. They should force everyone in the world to upgrade to CSS3 compatible browsers, discontinue IE8 and below.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Seddon</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-2719</link>
		<dc:creator>Ryan Seddon</dc:creator>
		<pubDate>Sun, 02 Oct 2011 23:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-2719</guid>
		<description>@&lt;a href=&quot;#comment-2712&quot; rel=&quot;nofollow&quot;&gt;sdtacoma&lt;/a&gt; - 

&lt;blockquote&gt;When I use this method for a table header cell, the cell’s width does not adjust to the width of the rotated text. Any idea why the cell isn’t resizing?&lt;/blockquote&gt;

Table cells and text rotation/transforms are quite inconsistent and I would avoid doing it.

&lt;blockquote&gt;Is there a way with CSS to have text display like this…&lt;/blockquote&gt;

Yes there is! Take a look at this little &lt;a href=&quot;http://jsfiddle.net/ryanseddon/KvpVs/&quot; rel=&quot;nofollow&quot;&gt;demo&lt;/a&gt;, basically it forces each character to it&#039;s own line by setting a width and forcing the word to break to a newline using &lt;code&gt;word-wrap&lt;/code&gt;. The &lt;code&gt;letter-spacing&lt;/code&gt; property is also set as some letters are smaller than others e.g. the I would be on the same line as the T.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-2712" rel="nofollow">sdtacoma</a> &#8211; </p>
<blockquote><p>When I use this method for a table header cell, the cell’s width does not adjust to the width of the rotated text. Any idea why the cell isn’t resizing?</p></blockquote>
<p>Table cells and text rotation/transforms are quite inconsistent and I would avoid doing it.</p>
<blockquote><p>Is there a way with CSS to have text display like this…</p></blockquote>
<p>Yes there is! Take a look at this little <a href="http://jsfiddle.net/ryanseddon/KvpVs/" rel="nofollow">demo</a>, basically it forces each character to it&#8217;s own line by setting a width and forcing the word to break to a newline using <code>word-wrap</code>. The <code>letter-spacing</code> property is also set as some letters are smaller than others e.g. the I would be on the same line as the T.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brenda</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-2716</link>
		<dc:creator>Brenda</dc:creator>
		<pubDate>Sun, 02 Oct 2011 17:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-2716</guid>
		<description>This was a nice article, but the issue I had with this one and all of the others that describe this technique is that the snippets shown do not work as expected when the text you want to rotate is on a page with other text.  I had to download the code to figure out how to do that.

This article would have been more complete and easier to work with if that part had been included.</description>
		<content:encoded><![CDATA[<p>This was a nice article, but the issue I had with this one and all of the others that describe this technique is that the snippets shown do not work as expected when the text you want to rotate is on a page with other text.  I had to download the code to figure out how to do that.</p>
<p>This article would have been more complete and easier to work with if that part had been included.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sdtacoma</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-2712</link>
		<dc:creator>sdtacoma</dc:creator>
		<pubDate>Tue, 20 Sep 2011 22:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-2712</guid>
		<description>2 questions....

1) When I use this method for a table header cell, the cell&#039;s width does not adjust to the width of the rotated text. Any idea why the cell isn&#039;t resizing?

2) Is there a way with CSS to have text display like this...

V
E
R
T
I
C
A
L</description>
		<content:encoded><![CDATA[<p>2 questions&#8230;.</p>
<p>1) When I use this method for a table header cell, the cell&#8217;s width does not adjust to the width of the rotated text. Any idea why the cell isn&#8217;t resizing?</p>
<p>2) Is there a way with CSS to have text display like this&#8230;</p>
<p>V<br />
E<br />
R<br />
T<br />
I<br />
C<br />
A<br />
L</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake Pucan</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-2707</link>
		<dc:creator>Jake Pucan</dc:creator>
		<pubDate>Wed, 14 Sep 2011 05:03:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-2707</guid>
		<description>Nice...but for me i&#039;m still using the old way, creating in jpg or png...to lessen my bug...Thanks anyway for sharing=)</description>
		<content:encoded><![CDATA[<p>Nice&#8230;but for me i&#8217;m still using the old way, creating in jpg or png&#8230;to lessen my bug&#8230;Thanks anyway for sharing=)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Ellis</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-2703</link>
		<dc:creator>Phil Ellis</dc:creator>
		<pubDate>Wed, 07 Sep 2011 17:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-2703</guid>
		<description>Great Tip.  Simple.  Only problem I have is simply that DWCS4 doesn&#039;t see the rotation and so I&#039;m slightly flying blind.  Guess that means it&#039;s time to go to CS5.  Thanks for the lesson!</description>
		<content:encoded><![CDATA[<p>Great Tip.  Simple.  Only problem I have is simply that DWCS4 doesn&#8217;t see the rotation and so I&#8217;m slightly flying blind.  Guess that means it&#8217;s time to go to CS5.  Thanks for the lesson!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Text um 90 Grad drehen &#171; F-LOG-GE</title>
		<link>http://www.thecssninja.com/css/real-text-rotation-with-css/comment-page-1#comment-2697</link>
		<dc:creator>Text um 90 Grad drehen &#171; F-LOG-GE</dc:creator>
		<pubDate>Tue, 30 Aug 2011 13:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.thecssninja.com/?p=388#comment-2697</guid>
		<description>[...] ich klasse. Sehr interessant finde ich auch, dass es f&#252;r den IE schon seit der Version 5.5 ein paar M&#246;glichkeiten zur Textrotation gibt. Diese Erkenntnis habe ich nur dank eines Kommentars von Lea Verou. Das zeigt doch mal wieder, [...]</description>
		<content:encoded><![CDATA[<p>[...] ich klasse. Sehr interessant finde ich auch, dass es f&#252;r den IE schon seit der Version 5.5 ein paar M&#246;glichkeiten zur Textrotation gibt. Diese Erkenntnis habe ich nur dank eines Kommentars von Lea Verou. Das zeigt doch mal wieder, [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

