好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

如何让网页中的文字倾斜90度_html/css_WEB-ITnose

如何让网页中的某段文字倾斜90度,注意:不是旋转是倾斜。


回复讨论(解决方案)

研究下这个:




div
{
margin:30px;
width:200px;
height:100px;
/* Rotate div */
transform:rotate(9deg);
-ms-transform:rotate(9deg); /* Internet Explorer */
-moz-transform:rotate(9deg); /* Firefox */
-webkit-transform:rotate(9deg); /* Safari 和 Chrome */
-o-transform:rotate(9deg); /* Opera */
}




Hello World

查看更多关于如何让网页中的文字倾斜90度_html/css_WEB-ITnose的详细内容...

  阅读:32次