HTML:
<div class="one">
<div class="one0"></div>
</div>
CSS:
.one{
width: 100px;
height: 100px;
background-color: #00B0E7;
/*相对位置*/
position: relative;
}
.one0{
width: 0;
height: 0;
border: 10px solid white;
border-top: none;
border-right-color: transparent;
border-left-color: transparent;
/*绝对位置*/
position: absolute;
/*将小三角形向下移90个像素*/
top: 90px;
/*将小三角形向右移10个像素*/
left: 10px;
}
效果