This topic created in 4052 days ago, the information mentioned may be changed or developed.
Supplement 1 · Apr 9, 2015
writing-mode 用来在网页上实现竖排文字。编网页的时候,中文、日文、韩文可以用这个实现右起竖排,而蒙古文、满文、锡伯文必须用这个左起竖排。
Supplement 2 · Apr 9, 2015
火狐 38 还支持下面两个跟 <ruby> 相关的 CSS 样式
ruby-align:https://developer.mozilla.org/en-US/docs/Web/CSS/ruby-align
ruby-position:https://developer.mozilla.org/en-US/docs/Web/CSS/ruby-position
Supplement 3 · Apr 13, 2015
⚠ 注意
千万不要竖排文字里面使用这个代码,不然中日韩文字就都会萌起来的:
-webkit-text-orientation: sideways-right;
1 replies • 2015-04-10 01:09:11 +08:00
 |
|
1
Khlieb Apr 10, 2015
要注意的是火狐支持的 writing-mode 属性虽然跟 Chrome 的相似,但是不需要前缀,比如 Chrome可以执行 -webkit-writing-mode: vertical-rl 实现竖排,而火狐直须 writing-mode: vertical-rl 就能实现。
|