CSS Vertical Text
时间:2011-06-09 来源:®Geovin Du Dream Park™
http://stackoverflow.com/questions/1080792/how-to-draw-vertical-text-with-css-cross-browser
http://www.ssi-developer.net/css/vertical-text.shtml
http://snook.ca/archives/html_and_css/css-text-rotation
http://dev.opera.com/articles/view/css3-transitions-and-2d-transforms/
http://grasshopperpebbles.com/css/vertical-text-with-css/
http://www.thecssninja.com/css/real-text-rotation-with-css
<style type="text/css"> .geovindu { /*1.涂聚文*/ -moz-transform:rotate(-270deg); -moz-transform-origin:bottom left; -webkit-transform: rotate(-270deg); -webkit-transform-origin: bottom left; -o-transform: rotate(-270deg); -o-transform-origin: bottom left; filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); /*2.涂聚文*/ display: block; position: absolute; right: -5px; top: 15px; -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); } </style> <!--[if IE]> <style type="text/css"> .geovindu { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); right:-15px; top:5px; } </style> <![endif]-->
相关阅读 更多 +