- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 内联边框
- CSS - 外边距
- CSS - 列表
- CSS - 内边距
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - Clearfix
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 位置
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 焦点
- CSS - 缩放
- CSS - 平移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-Index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪辑
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - All
- CSS - Inset
- CSS - Isolation
- CSS - Overscroll
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - 指针事件
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - Max Block Size
- CSS - Min Block Size
- CSS - Mix Blend Mode
- CSS - Max Inline Size
- CSS - Min Inline Size
- CSS - Offset
- CSS - Accent Color
- CSS - User Select
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 图层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文本效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - Important
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - 盒装饰中断
- CSS - 光标颜色
- CSS - 文本阴影
- CSS - 文本
- CSS - 2d 变换
- CSS - 3d 变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - 盒尺寸
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 样式图片
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS RWD - 简介
- CSS RWD - 视口
- CSS RWD - 网格视图
- CSS RWD - 媒体查询
- CSS RWD - 图片
- CSS RWD - 视频
- CSS RWD - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - order 属性
CSS 的order属性用于指定弹性项目在弹性容器中出现的顺序。弹性项目的顺序由其order属性的值决定。order值较低的弹性项目将首先显示。
语法
order: number | initial | inherit;
属性值
值 | 描述 |
---|---|
数字 | 使用数字值(正数或负数)指定弹性项目的顺序。对于正数,值越小,元素越先出现;对于负数,值越大,元素越先出现。 |
initial | 将属性设置为其默认值。 |
inherit | 从父元素继承该属性。 |
CSS Order 属性示例
以下示例使用不同的元素解释了order属性。
使用正数的 Order 属性
可以通过为order属性指定正数来设置弹性项目的顺序。对于正数,值越小,元素越先出现。以下示例说明了这一点。
示例
<!DOCTYPE html> <html> <head> <style> .container { height: 150px; display: flex; gap: 4px; } .container>div { padding: 10px; text-align: center; height: 70px; width: 70px; } .box1 { background-color: lightgreen; order: 2; } .box2 { background-color: lightblue; order: 4; } .box3 { background-color: lightcoral; order: 1; } .box4 { background-color: lightgray; order: 3; } </style> </head> <body> <h2> CSS order property </h2> <h4> order: 2-4-1-3 (first element- second position, second element- fourth position, third element- first position, fourth element- third position) </h4> <div class="container"> <div class="box1"> One </div> <div class="box2"> Two </div> <div class="box3"> Three </div> <div class="box4"> Four </div> </div> </body> </html>
使用负数的 Order 属性
可以通过为order属性指定负数来设置弹性项目的顺序。对于负数,值越大,元素越先出现。以下示例说明了这一点。
示例
<!DOCTYPE html> <html> <head> <style> .container { height: 150px; display: flex; gap: 4px; } .container > div { padding: 10px; text-align: center; height: 70px; width: 70px; } .box1 { background-color: lightgreen; order: -2; } .box2 { background-color: lightblue; order: -1; } .box3 { background-color: lightcoral; order: -3; } .box4 { background-color: lightgray; order: -4; } </style> </head> <body> <h2> CSS order property </h2> <h4> order: -2 / -1 / -3 / -4 (first element- third position, second element- fourth position, third element- second position, fourth element- first position) </h4> <div class="container"> <div class="box1"> One </div> <div class="box2"> Two </div> <div class="box3"> Three </div> <div class="box4"> Four </div> </div> </body> </html>
带图片的 Order 属性
order属性也可以与作为弹性项目的图像一起使用。图像的位置取决于提供的值——正数或负数。以下示例说明了这一点。
示例
<!DOCTYPE html> <html> <head> <style> .container { height: 150px; display: flex; gap: 4px; } .container>img { height: 100px; width: 100px; } .img1 { background-color: lightgreen; order: 4; } .img2 { background-color: lightblue; order: 2; } .img3 { background-color: lightcoral; order: 1; } .img4 { background-color: lightgray; order: 3; } </style> </head> <body> <h2> CSS order property </h2> <h4> order: 4-2-1-3 (first image- fourth position, second image- second position, third image - first position, fourth image - third position) </h4> <div class="container"> <img src="/css/images/red-flower.jpg" alt="flower" class="img1" /> <img src="/css/images/orange-flower.jpg" alt="flower" class="img2" /> <img src="/css/images/white-flower.jpg" alt="flower" class="img3" /> <img src="/css/images/pink-flower.jpg" alt="flower" class="img4" /> </div> </body> </html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
order | 29 | 12 | 28 | 9.0 | 12.1 |
css_properties_reference.htm
广告