How to change “div” place in the flow?

Isabella

New Member
There are two columns (left and right) with float positioning: http://jsfiddle.net/GBa4r/\[code\]<style> .container {width:200px;} .right {float: right; width: 30%;} .left {float: left; width: 70%;}?</style><div class="container"> <div class="right">2</div> <div class="left">1</div></div>\[/code\]?For print styles I need to change column places like in this example http://jsfiddle.net/GBa4r/1/ (".left" column above ".right")What css code I should use in\[code\] <link href="http://stackoverflow.com/css/print.css" media="print" type="text/css" rel="stylesheet" />\[/code\]to do it without change html code?
 
Back
Top