Files
2018-10-16 21:32:40 +05:30

453 B
Raw Blame History

title, localeTitle
title localeTitle
Use the order Property to Rearrange Items 使用order属性重新排列项目

使用order属性重新排列项目

在进行任何更改之前,请注意颜色的顺序。左边是蓝色,右边是红色。设置order属性后您将能够选择应首先显示哪一个而无需更改html代码。

```CSS

box-1 {

background-color: dodgerblue; 
 order: 2; 
 height: 200px; 
 width: 200px; 

} ```