19 lines
453 B
Markdown
19 lines
453 B
Markdown
![]() |
---
|
|||
|
title: Use the order Property to Rearrange Items
|
|||
|
localeTitle: 使用order属性重新排列项目
|
|||
|
---
|
|||
|
## 使用order属性重新排列项目
|
|||
|
|
|||
|
在进行任何更改之前,请注意颜色的顺序。左边是蓝色,右边是红色。设置`order`属性后,您将能够选择应首先显示哪一个,而无需更改html代码。
|
|||
|
|
|||
|
\`\`\`CSS
|
|||
|
|
|||
|
# box-1 {
|
|||
|
```
|
|||
|
background-color: dodgerblue;
|
|||
|
order: 2;
|
|||
|
height: 200px;
|
|||
|
width: 200px;
|
|||
|
```
|
|||
|
|
|||
|
} \`\`\`
|