<?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>responsiveness &#8211; Blackbams Blog</title>
	<atom:link href="https://blog.blackbam.at/tag/responsiveness/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.blackbam.at</link>
	<description>development - digital arts - internet</description>
	<lastBuildDate>Tue, 26 May 2015 16:10:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>Responsiveness: Change HTML element order (of e.g. content/sidebars)</title>
		<link>https://blog.blackbam.at/2015/05/26/responsiveness-change-html-element-order-of-e-g-contentsidebars/</link>
					<comments>https://blog.blackbam.at/2015/05/26/responsiveness-change-html-element-order-of-e-g-contentsidebars/#respond</comments>
		
		<dc:creator><![CDATA[Blackbam]]></dc:creator>
		<pubDate>Tue, 26 May 2015 15:30:44 +0000</pubDate>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[responsiveness]]></category>
		<guid isPermaLink="false">https://blog.blackbam.at/?p=2242</guid>

					<description><![CDATA[The following technique is very useful if you have to make existing websites responsive and e.g. want to have two sidebars after the main content without changing the original HTML. You can define the order of the HTML element which have a common parent element by doing the following: .parent { display:-webkit-box; display:-moz-box; display:box; -webkit-box-orient:vertical; [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The following technique is very useful if you have to make existing websites responsive and e.g. want to have two sidebars after the main content without changing the original HTML. You can define the order of the HTML element which have a common parent element by doing the following:</p>
<pre lang="css">.parent {
  display:-webkit-box;
  display:-moz-box;
  display:box;
  -webkit-box-orient:vertical;
  -moz-box-orient:vertical;
  box-orient:vertical
}

.child1 {
    -webkit-box-ordinal-group:2;
    -moz-box-ordinal-group:2;
    box-ordinal-group:2;
}

.child2 {
  -webkit-box-ordinal-group:3;
  -moz-box-ordinal-group:3;
  box-ordinal-group:3;
}

.child3 {
  -webkit-box-ordinal-group:1;
  -moz-box-ordinal-group:1;
  box-ordinal-group:1;
}</pre>
<p>Old box model &#8211; more info on the new flexbox model: <a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/">https://css-tricks.com/snippets/css/a-guide-to-flexbox/</a></p>
<p><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fblog.blackbam.at%2F2015%2F05%2F26%2Fresponsiveness-change-html-element-order-of-e-g-contentsidebars%2F&#038;title=Responsiveness%3A%20Change%20HTML%20element%20order%20%28of%20e.g.%20content%2Fsidebars%29" data-a2a-url="https://blog.blackbam.at/2015/05/26/responsiveness-change-html-element-order-of-e-g-contentsidebars/" data-a2a-title="Responsiveness: Change HTML element order (of e.g. content/sidebars)"><img src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded>
					
					<wfw:commentRss>https://blog.blackbam.at/2015/05/26/responsiveness-change-html-element-order-of-e-g-contentsidebars/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
