答案 0 :(得分:0)
尝试这种方式:
<div id="container">
<div id="triangle-bottomleft"></div>
<div id="smile"></div>
</div>
#container {
width: 100px;
height: 100px;
position: relative;
}
#triangle-bottomleft {
width: 0;
height: 0;
border-bottom: 100px solid red;
border-right: 100px solid transparent;
position: absolute;
left: 0;
bottom: 0;
}
#smile {
position: absolute;
left: 20%;
bottom: 20%;
}