用div制作一个爱心,怎么做,有大佬能帮下忙吗,用别的方法也行,不是用图片,就是打印一个爱心
拿走不谢点采纳https://www.cnblogs.com/liu-en-ci/p/6721963.html
```html
.heart {
width: 100px;
height: 100px;
position: relative;
background-color: #f00;
transform: rotate(45deg);
}
.heart::before,
.heart::after {
position: absolute;
content: '';
background-color: #f00;
top: 0px;
left: -50%;
width: 100%;
height: 100%;
border-radius: 50%;
}
.heart::after {
left: 0;
top: -50%;
}
<div class="heart"></div>
```
一个正方形旋转45度,两个半圆拼接