<?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>flip text vertically &#8211; Extreme Web Designs</title>
	<atom:link href="https://theextremewebdesigns.com/blog/tag/flip-text-vertically/feed/" rel="self" type="application/rss+xml" />
	<link>https://theextremewebdesigns.com/blog</link>
	<description>Web Design and Web Development</description>
	<lastBuildDate>Tue, 06 Dec 2016 10:22:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>
<site xmlns="com-wordpress:feed-additions:1">156673191</site>	<item>
		<title>Flip Text Horizontally and Vertically Using CSS3 Easily</title>
		<link>https://theextremewebdesigns.com/blog/flip-text-horizontally-and-vertically-using-css3-easily/</link>
					<comments>https://theextremewebdesigns.com/blog/flip-text-horizontally-and-vertically-using-css3-easily/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 06 Dec 2016 10:22:33 +0000</pubDate>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[flip text horizontally]]></category>
		<category><![CDATA[flip text vertically]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=4028</guid>

					<description><![CDATA[Ever wondered how to flip text horizontally and vertically without javascript? In this article, I will share easy ways to achieve the flip text effect just by using CSS/CSS3. Flip Text Horizontally Using CSS/CSS3 Let&#8217;s say that we have some text in a div and we would like to flip this text both horizontally. Let&#8217;s [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Ever wondered how to flip text horizontally and vertically without javascript? In this article, I will share easy ways to achieve the flip text effect just by using CSS/CSS3.</p>
<h2>Flip Text Horizontally Using CSS/CSS3</h2>
<div class="make_demo">

	<form action="https://theextremewebdesigns.com/blog/wp-content/themes/ewd_blog_2017/try_demo.php?post_id=4028" method="post" name="form1" target="_blank" id="form1">


	<input type="hidden" name="shortcode_content" id="shortcode_content" value="" />

        <div class="try_demo_btn_container">


            <button type="submit" name="sbt_make_demo" id="sbt_make_demo" class="btn-primary btn-try-demo">
                Try Demo
            </button>


        </div><!-- .try_demo_btn_container -->

    </form>
    </div>
    
<p>Let&#8217;s say that we have some text in a div and we would like to flip this text both horizontally. Let&#8217;s see how to do this.</p>
<pre class="lang:xhtml decode:true  " title="Horizontal Text Flip using CSS">&lt;style&gt;
.holder {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;  
}

.horizontal-flip {
-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
&lt;/style&gt;


&lt;h2&gt;Horizontal Text Flip:&lt;/h2&gt;
&lt;div class="holder horizontal-flip"&gt;
1234567890
&lt;/div&gt;</pre>
<h2>Flip Text Vertically Using CSS/CSS3</h2>
<p>Now lets flip the same text vertically just by using CSS.</p>
<pre class="lang:xhtml decode:true " title="Vertical Text flip Using CSS3">&lt;style&gt;
.holder {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;  
}

.vertical-flip {
-moz-transform: scale(1, -1);
-webkit-transform: scale(1, -1);
-o-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
}
&lt;/style&gt;


&lt;h2&gt;Vertical Text Flip:&lt;/h2&gt;
&lt;div class="holder horizontal-flip"&gt;
1234567890
&lt;/div&gt;</pre>
<div class="make_demo">

	<form action="https://theextremewebdesigns.com/blog/wp-content/themes/ewd_blog_2017/try_demo.php?post_id=4028" method="post" name="form1" target="_blank" id="form1">


	<input type="hidden" name="shortcode_content" id="shortcode_content" value="" />

        <div class="try_demo_btn_container">


            <button type="submit" name="sbt_make_demo" id="sbt_make_demo" class="btn-primary btn-try-demo">
                Try Demo
            </button>


        </div><!-- .try_demo_btn_container -->

    </form>
    </div>
    
<h3>Simple, isn&#8217;t it?</h3>
<p>Do you know of any other ways to flip text using just CSS? Feel free to suggest by commenting below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/flip-text-horizontally-and-vertically-using-css3-easily/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4028</post-id>	</item>
	</channel>
</rss>
