Files
freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/css-flexbox/use-the-order-property-to-rearrange-items.md

778 B
Raw Blame History

id, title, challengeType, videoUrl, forumTopicId
id title challengeType videoUrl forumTopicId
587d78ae367417b2b2512aff 使用 order 属性重新排列项目 0 https://scrimba.com/p/pVaDAv/cMbvNAG 301116

--description--

order属性告诉 CSS flex 容器里项目的顺序。默认情况下,项目排列顺序与源 HTML 文件中顺序相同。这个属性接受数字作为参数,可以使用负数。

--instructions--

#box-1#box-2添加 CSS 属性order#box-1order属性值设为 2#box-2order属性值设为 1

--hints--

#box-1元素应有order属性,其值应为 2

assert($('#box-1').css('order') == '2');

#box-2元素应有order属性,其值应为 1

assert($('#box-2').css('order') == '1');

--solutions--