Blogger Information
Blog 28
fans 0
comment 1
visits 21451
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
项目属性: order控制项目顺序
南宫
Original
959 people have browsed it
  1. <!-- order控制项目顺序 -->
  2. <div class="container">
  3. <div class="item">1</div>
  4. <div class="item">2</div>
  5. <div class="item">3</div>
  6. </div>
  1. <style>
  2. .container{
  3. width: 300px;
  4. display: flex;
  5. }
  6. .container>.item{
  7. width: 60px;
  8. }
  9. .container > .item:first-of-type{
  10. order: 3;
  11. }
  12. /* 大于现有最大数字,按最大来 */
  13. .container > .item:first-of-type{
  14. order: 5;
  15. }
  16. </style>
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:当天的作业,不要分成多次提交, 不方便统计完成情况
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post