/*
* PS:旋转层的背景是必须的,不然IE8以下使用滤镜旋转会让字体变模糊,效果不太好.
*/
<
style type="text/css"> .box{position:relative;width:20px;height:200px;background:#CCC;margin:50px;overflow:hidden;} .main{position:absolute;width:100px;height:100px;line-height:100px;top:10px;left:50%;margin-left:-50px;color:#FFF;text-align:left;} .main{-moz-transform:rotate(90deg);-webkit-transform:rotate(90deg);-o-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);} </style> <!--[if lte IE 8]> <style> .main{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);background:#CCC;} </style> <![endif]--> <div class="box"> <div class="main">hello world!!</div> </div>
posted on 2012-11-16 10:08  somesayss  阅读(3260)  评论(0编辑  收藏  举报