CSS3系列:魔法系列

一、三角形


    #wrap div{
margin: 0 auto;
}
.triangle_three
{
height:0px; width:0px;
border-bottom:50px solid #ccc;
border-left:100px solid transparent;
border-right:100px solid transparent;
}
.triangle-four{
height:20px; width:20px;
border-top: 50px solid blue;
border-bottom: 50px solid black;
border-left: 50px solid green;
border-right:50px solid yellow;
}
   <div id="wrap">
<div class="triangle_three" >
</div>
<div class="triangle-four">
</div>
</div>

房子图

CSS3系列:魔法系列

二、闪耀太阳系

上一篇:cpp 区块链模拟示例(五) 序列化


下一篇:《区块链DAPP开发入门、代码实现、场景应用》笔记2——Solidity实现简单的智能合约