Vertical Text with CSS(用CSS竖向排列文本)
网站建设 2021-07-03 08:43www.dzhlxh.cn网站建设
CSS代码:
#right-col {
background-color:#000;
color:#ff6600;
width:390px;
}
#right-col p {
-webkit-transform: rotate(-90deg); /* for Safari, Chrome */
-moz-transform: rotate(-90deg); /* for Firefox */
-o-transform: rotate(-90deg); /* for Opera */
writing-mode: tb-rl; /* for IE */
filter: flipv fliph;
}
HTML:
<div id="right-col"><p>FeedBack</p></div>
效果:
复制代码
代码如下:#right-col {
background-color:#000;
color:#ff6600;
width:390px;
}
#right-col p {
-webkit-transform: rotate(-90deg); /* for Safari, Chrome */
-moz-transform: rotate(-90deg); /* for Firefox */
-o-transform: rotate(-90deg); /* for Opera */
writing-mode: tb-rl; /* for IE */
filter: flipv fliph;
}
HTML:
复制代码
代码如下:<div id="right-col"><p>FeedBack</p></div>
效果:
参考网页: http://grasshopperpebbles.com/css/vertical-text-with-css/
狼蚁网站SEO优化的Solution是用JS实现, 我很喜欢其中Cube的Demo:
来自
上一篇:css hack之清除浮动(clearfix)
下一篇:多个浏览器透明度设置