发布网友 发布时间:2022-04-06 11:56
共6个回答
懂视网 时间:2022-04-06 16:18
本篇文章给大家带来的内容是关于如何使用CSS3中属性box-direction控制布局顺序?(代码教程),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。在CSS3弹性盒子模型中,我们可以使用box-direction属性来设置弹性盒子内部中“子元素”的排列顺序。
语法:box-direction
说明:box-direction属性取值如下:
normal 正向显示(默认值)
reverse 反向显示
举例:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS3 box-direction属性</title> <style type="text/css"> body { display:-webkit-box; -webkit-box-orient:horizontal; /*定义盒子元素内的元素从左到右流动显示*/ -webkit-box-direction:reverse; /*定义盒子元素内的元素反向显示*/ } div{height:100px;line-height:100px;} #box1{background:red;} #box2{background:blue;} #box3{background:yellow;} </style> </head> <body> <div id="box1">盒子1</div> <div id="box2">盒子2</div> <div id="box3">盒子3</div> </body> </html>
在浏览器预览效果如下:
热心网友 时间:2022-04-06 13:26
<!DOCTYPE html>
热心网友 时间:2022-04-06 14:44
中间那个左浮动热心网友 时间:2022-04-06 16:18
初步想法是用,绝对定位做热心网友 时间:2022-04-06 18:10
CSS部分————————————热心网友 时间:2022-04-06 20:18
感觉应该要用到float