<title>Document</title>
<style>
.box {
width: 0px;
height: 0px;
/* 透明色 transparent 或者rgba(0,0,0,0) */
/* border-top:50px solid transparent; */
/* border-right: 50px solid transparent;
border-left:50px solid transparent;
border-bottom: 50px solid yellowgreen; */
border-width:0px 50px 50px 50px;
border-color: transparent transparent yellowgreen transparent ;
border-style: solid;
}
</style>
</head>
<body>
<!-- 用css代码实现三角形(利用边框颜色交叉线)
取代了图片 减少请求次数
-->
<div class="box"></div>