CSS实现9宫格布局的4种方法:flex、float、grid、table布局

文章展示了使用HTML和CSS实现网页布局的四种常见方法:Flex布局、Grid布局、Float布局和Table布局。每种方法都配有相应的HTML代码和样式,包括颜色块排列和尺寸设置,以直观地呈现不同布局方式的效果。
摘要由CSDN通过智能技术生成

一、实现效果及html代码

1、实现效果

在这里插入图片描述

2、html代码

<body>
    <div class="container">
      <div style="background-color: red">1</div>
      <div style="background-color: blue">2</div>
      <div style="background-color: green">3</div>
      <div style="background-color: pink">4</div>
      <div style="background-color: orange">5</div>
      <div style="background-color: orchid">6</div>
      <div style="background-color: burlywood">7</div>
      <div style="background-color: royalblue">8</div>
      <div style="background-color: coral">9</div>
    </div>
  </body>

二、flex布局实现

<style>
  .container {
    display: flex;
    flex-wrap: wrap;
  }
  .container div {
    width: 33%;
    text-align: center;
    height: 150px;
  }
</style>

三、float布局实现

<style>
  .container div {
    float: left;
    width: 33%;
    height: 150px;
  }
</style>

四、grid布局实现

<style>
  .container {
    display: grid;
    grid-template-columns: auto auto auto;
  }
  .container div {
    height: 150px;
    text-align: center;
  }
</style>

五、table布局实现
html结构

 <body>
   <div class="container">
     <div class="item">
       <div style="background-color: red">1</div>
       <div style="background-color: blue">2</div>
       <div style="background-color: green">3</div>
     </div>
     <div class="item">
       <div style="background-color: pink">4</div>
       <div style="background-color: orange">5</div>
       <div style="background-color: orchid">6</div>
     </div>
     <div class="item">
       <div style="background-color: burlywood">7</div>
       <div style="background-color: royalblue">8</div>
       <div style="background-color: coral">9</div>
     </div>
   </div>
 </body>
<style>
      .container {
        display: table;
        width: 100%;
        height: 100%;
      }
      .item {
        display: table-row;
      }
      .item div {
        display: table-cell;
        height: 150px;
      }
    </style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值