博主信息
博文 50
粉丝 0
评论 0
访问量 47984
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
演示flex容器各个参数含义
手机用户1580651468
原创
528人浏览过

演示flex容器各个参数含义

一、实例演示flex容器与项目常用属性:

  1. 本次通过代码和图片展示

一)flex详细代码

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>flex布局</title>
  8. </head>
  9. <body>
  10. <!-- 1、flex常用术语:1容器2项目 3主轴4交叉轴
  11. 容器属性 项目属性 -->
  12. <div class="container">
  13. <div class="item">item1</div>
  14. <div class="item">item2</div>
  15. <div class="item">item3</div>
  16. </div>
  17. <style>
  18. .container{
  19. width: 450px;
  20. height: 50px;
  21. display: flex;
  22. /* flex-direction: row;
  23. flex-wrap: nowrap;
  24. justify-content: start;
  25. align-items: stretch;
  26. align-content: start; */
  27. flex-flow: row nowrap;
  28. place-content: start;
  29. place-content: space-around;
  30. place-content: space-evenly;
  31. place-items: stretch;
  32. place-items: center;
  33. }
  34. .container > .item{
  35. background-color: aquamarine;
  36. flex: 0 1 auto;
  37. flex: initial;
  38. /* 完全响应 */
  39. flex: auto;
  40. /* 完全不响应 */
  41. flex: 0 0 auto;
  42. }
  43. .container .item:first-of-type,
  44. .container.item:last-of-type{
  45. flex: 1;
  46. background-color: yellowgreen;
  47. }
  48. .container .item:first-of-type+*{
  49. background-color: rebeccapurple;
  50. flex: 3;
  51. place-self: end;
  52. }
  53. /* 第一个 */
  54. .container .item:first-of-type{
  55. order: 0;
  56. background-color: blueviolet;
  57. }
  58. .container .item:first-of-type+*{
  59. order: 0;
  60. background-color: aqua;
  61. }
  62. .container .item:last-of-type{
  63. order: 0;
  64. background-color: lightgreen;
  65. }
  66. </style>
  67. </body>
  68. </html>

二,运行的效果图:



二、flex常用术语如下图

批改老师:PHPzPHPz

批改状态:合格

老师批语:完成的不错
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学