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

css实现等边六边形

时间:2018-05-18 00:25:14      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:代码   tle   ali   src   oct   pre   center   head   分享   

在平时的页面布局中,我们也会经常碰到蜂窝煤类型的模块:

技术分享图片

 

那么我们把他拆开,就是单个的六边形,如何用css去实现一个六边形呢?下面是我用绘图软件绘制的css实现六边形的步骤:

技术分享图片

 

具体的html代码如下:

<!DOCTYPE html>
<html>
    <head>
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
      .list{
        width: 200px;
        height: 250px;
        overflow: hidden;
        transform: rotate(120deg);
        margin: 200px;
      }
      .list_child{
        width: 100%;
        height: 100%;
        overflow: hidden;
        transform: rotate(-60deg);
      }
      .list_child_child{
	    width: 100%;
	    height: 100%;
	    overflow: hidden;
	    transform: rotate(-60deg);
	    background-color: red;
      }
    </style>
  </head>
  <body>
    <div class="list">
      <div class="list_child">
        <div class="list_child_child"></div>
      </div>
    </div>
  </body>
</html>

  

 

css实现等边六边形

标签:代码   tle   ali   src   oct   pre   center   head   分享   

原文地址:https://www.cnblogs.com/a-cat/p/9053884.html

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