您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)css中使用box-direction屬性的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
css box-direction屬性用于定義框元素的子元素以什么方向來排列,其語法是box-direction: normal|reverse|inherit,normal以默認(rèn)方向顯示子元素。
css box-direction屬性怎么用?
作用:定義框元素的子元素以什么方向來排列。
語法:
box-direction: normal|reverse|inherit;
說明:
normal以默認(rèn)方向顯示子元素。reverse以反方向顯示子元素。inherit應(yīng)該從子元素繼承 box-direction 屬性的值
注釋:
目前沒有瀏覽器支持 box-direction 屬性。Firefox 支持替代的 -moz-box-direction 屬性。Safari、Opera 以及 Chrome 支持替代的 -webkit-box-direction 屬性。
css box-direction屬性使用示例
<!DOCTYPE html> <html> <head> <style> div { width:350px; height:100px; border:1px solid black; /* Firefox */ display:-moz-box; -moz-box-direction:reverse; /* Safari, Opera, and Chrome */ display:-webkit-box; -webkit-box-direction:reverse; /* W3C */ display:box; box-direction:reverse; } </style> </head> <body> <div> <p>段落 1。</p> <p>段落 2。</p> <p>段落 3。</p> </div> <p><b>注釋:</b>IE 不支持 box-direction 屬性。</p> </body> </html>
效果輸出:
關(guān)于css中使用box-direction屬性的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。