您好,登錄后才能下訂單哦!
這篇文章主要介紹css中writing-mode屬性的使用方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
css writing-mode屬性定義了文本在水平或垂直方向上如何排布,用來控制文本的展示方向,以便可以從上到下或從左到右讀取,具體取決于語言。西方語言一般都是 lr-tb 的書寫方式,但是亞洲語言 lr-tb | tb-rl 的書寫方式都有。
css writing-mode屬性怎么用?
writing-mode 屬性定義了文本在水平或垂直方向上如何排布。
語法:
writing-mode: horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr
屬性值:
● horizontal-tb:水平方向自上而下的書寫方式。即 left-right-top-bottom
● vertical-rl:垂直方向自右而左的書寫方式。即 top-bottom-right-left
● vertical-lr:垂直方向內(nèi)內(nèi)容從上到下,水平方向從左到右
● sideways-rl:內(nèi)容垂直方向從上到下排列
● sideways-lr:內(nèi)容垂直方向從下到上排列
說明:
writing-mode屬性設(shè)置或檢索對象的內(nèi)容塊固有的書寫方向。西方語言一般都是 lr-tb 的書寫方式,但是亞洲語言 lr-tb | tb-rl 的書寫方式都有。
writing-mode這個(gè)CSS屬性以前是IE的獨(dú)有屬性,IE5.5瀏覽器就已經(jīng)支持了。在很長一段時(shí)間里,F(xiàn)ireFox, Chrome這些現(xiàn)代瀏覽器都不支持writing-mode,各大現(xiàn)代瀏覽器紛紛對writing-mode實(shí)現(xiàn)了更加標(biāo)準(zhǔn)的支持(主要得益于FireFox瀏覽器的積極跟進(jìn))。
css writing-mode屬性 示例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> table, td, th { border: 1px solid black; } table { border-collapse: collapse; width: 100%; } .example.Text1 span, .example.Text1 { writing-mode: horizontal-tb; -webkit-writing-mode: horizontal-tb; -ms-writing-mode: horizontal-tb; } .example.Text2 span, .example.Text2 { writing-mode: vertical-lr; -webkit-writing-mode: vertical-lr; -ms-writing-mode: vertical-lr; } .example.Text3 span, .example.Text3 { writing-mode: vertical-rl; -webkit-writing-mode: vertical-rl; -ms-writing-mode: vertical-rl; } .example.Text4 span, .example.Text4 { writing-mode: sideways-lr; -webkit-writing-mode: sideways-lr; -ms-writing-mode: sideways-lr; } .example.Text5 span, .example.Text5 { writing-mode: sideways-rl; -webkit-writing-mode: sideways-rl; -ms-writing-mode: sideways-rl; } </style> </head> <body> <table> <tr> <th>value</th> <th>Vertical script</th> <th>Horizontal script</th> <th>Mixed script</th> </tr> <tr> <td>horizontal-tb</td> <td class="example Text1"><span>我家沒有電腦。</span></td> <td class="example Text1"><span>Example text</span></td> <td class="example Text1"><span>1994年に至っては</span></td> </tr> <tr> <td>vertical-lr</td> <td class="example Text2"><span>我家沒有電腦。</span></td> <td class="example Text2"><span>Example text</span></td> <td class="example Text2"><span>1994年に至っては</span></td> </tr> <tr> <td>vertical-rl</td> <td class="example Text3"><span>我家沒有電腦。</span></td> <td class="example Text3"><span>Example text</span></td> <td class="example Text3"><span>1994年に至っては</span></td> </tr> <tr> <td>sideways-lr</td> <td class="example Text4"><span>我家沒有電腦。</span></td> <td class="example Text4"><span>Example text</span></td> <td class="example Text4"><span>1994年に至っては</span></td> </tr> <tr> <td>sideways-rl</td> <td class="example Text5"><span>我家沒有電腦。</span></td> <td class="example Text5"><span>Example text</span></td> <td class="example Text5"><span>1994年に至っては</span></td> </tr> </table> </body> </html>
效果圖:
以上是css中writing-mode屬性的使用方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。