用position的相对定位(relative)和绝对定位(absolute)
简单的例子:
<h3>文字<span>文字</span></h3>
h3{ position:relativecolor:#fff}
h3 span{ position:absolutetop:1pxleft:1pxcolor:#000}
大概就是这样的思路,具体细节你自己去调整。
一、使用writing-mode属性语法:writing-mode:lr-tb或writing-mode:tb-rl
参数:
1、lr-tb:从左向右,从上往下
2、tb-rl:从上往下,从右向左
运行代码发现,IE显示正常,火狐却不行,所以不建议使用writing-mode属性,下面使用模拟方法实现。
二、模拟文字竖排
代码:
ul{width:100pxheight:80pxoverflow:hiddenlist-style:none}
ul li{float:rightdisplay:inlinemargin-left:4pxwidth:14pxheight:100pxfont-size:14pxword-wrap:break-wordword-break:nomal}
此方法让li右浮动,设置li宽度和字宽度一样都是14px,这样就自动换行了。另外,“word-wrap:break-wordword-break:nomal”这句实现标点自动换行(连续字符自动换行)。
这与浮动无关,而是连续的 数字 或 英文字符 将容器撑大,不会正常换行所致,你可加上这样的css代码让其强制换行,如下:<span style="display:inlineword-break:break-all">右边11111111111111111111111111111111111111111111111111111111</span>