码迷,mamicode.com
首页 > Web开发 > 详细

css布局 弹性布局 和 网格布局

时间:2018-03-09 01:46:08      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:width   src   css   ima   pos   实现   post   nbsp   shu   

这里就不写这两种布局的内容了

弹性布局链接:http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html

网格布局链接:https://www.jianshu.com/p/d183265a8dad

小测试:

用 flex 与 grid 实现如下即可:

技术分享图片

 

<html>
  <head>
    <style>
      
      /* flex */
     .box {
       display: flex;
       flex-wrap: wrap;
       width: 100%;
     }
     .box div {
        width: calc(100% / 3);
        height: 100px;
        border: 1px solid black;
     }

     /* grid */
     .box {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        width: 100%;
     }

     .box div {
        height: 100px;
        border: 1px solid black;
     }
    </style>
  <head>
  <body>
    <div class="box">
      <div></div>
      <div></div>
      <div></div>
      <div></div>
    </div>	
  <body>
</html>

  

css布局 弹性布局 和 网格布局

标签:width   src   css   ima   pos   实现   post   nbsp   shu   

原文地址:https://www.cnblogs.com/yaobolove/p/8531593.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!