博客列表 >《Flex入门体验》2019-12-23作业笔记

《Flex入门体验》2019-12-23作业笔记

杨凡的博客
杨凡的博客原创
2020年01月01日 21:08:28574浏览

通过老师对20号作业的讲解,针对自己的作业对比,自己使用的浮动过多,页面如果出现大小变化可能效果会错乱,书写方式不够规范,老师案例中对定位使用比较多,之前对定位理解比较模糊,通过案例加深了对定位的理解,对选择的使用也有加深,

Flex体验

传统方式布局

传统通过定位方式让盒子水平垂直居中

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>flex初体验</title>
  6. <style>
  7. /*公共样式*/
  8. .container {
  9. width: 300px;
  10. height: 200px;
  11. outline: 2px dashed red;
  12. }
  13. .item {
  14. width: 150px;
  15. height: 100px;
  16. outline: 2px dashed green;
  17. /*文字水平居中*/
  18. text-align: center;
  19. /*设置行高与盒子一样后,文字可以垂直居中*/
  20. line-height: 100px;
  21. }
  22. .container.traditon {
  23. position: relative;
  24. }
  25. .item.traditon {
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. bottom: 0;
  30. right: 0;
  31. margin: auto;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class="container traditon">
  37. <div class="item traditon">传统布局</div>
  38. </div>
  39. </body>
  40. </html>
使用flex弹性盒子布局

通过几句代码即可让盒子可以快速的水平垂直居中

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>flex初体验</title>
  6. <style>
  7. /*公共样式*/
  8. .container {
  9. width: 300px;
  10. height: 200px;
  11. outline: 2px dashed red;
  12. }
  13. .item {
  14. width: 150px;
  15. height: 100px;
  16. outline: 2px dashed green;
  17. /*文字水平居中*/
  18. text-align: center;
  19. /*设置行高与盒子一样后,文字可以垂直居中*/
  20. line-height: 100px;
  21. }
  22. .container.traditon {
  23. /*转为弹性盒子*/
  24. display: flex;
  25. /*设置弹性盒子在水平和垂直方向上的对其方式*/
  26. justify-content: center;
  27. align-items: center;
  28. }
  29. .item.traditon {
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="container traditon">
  35. <div class="item traditon">传统布局</div>
  36. </div>
  37. </body>
  38. </html>


以上案例效果一样,但是可以看出flex的代码效率更加高效,也更加方便

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议