writing-mode: horizontal-tb;direction: ltr;
html
<div id="demo">
<p>content</p>
</div>
css
#demo{width:1000px;height:600px;margin:auto;}
#demo{width:1000px;height:600px;}
#demo p{margin:10% 5%;}
#demo{width:1000px;height:600px;
-webkit-writing-mode: vertical-rl; /* for webkit engine */
writing-mode: tb-rl; /* for ie */}
#demo p{margin:10% 5%;}
.div1{margin-bottom:20px;background:red;}
.div2{margin-top:20px;background:green;}
<div class="div1"></div>
<div class="div2"></div>
原文:https://www.cnblogs.com/menghu1994/p/12205681.html