#涉及的知识点:css
1.css的伪元素的应用(画当心心简直超简单)
```详细的代码以下:
(承接上篇的撩妹文,在这里只写当心心的样式)
废话很少说:三个元素呈上...
.heart{
width:10px;
height:10px;
transform:rotato(45deg);
position:absolute;//当心心要举高高,因此要定位呀。
}
//左心房
.heart::before{
content:"";
width:inherit;
height:inherit;
position:ansolute;
left:-5px;
background:inherit;
border-radius:50%;
}
//右心房
.heart::after{
content:"";
width:inherit;
height:inherit;
position:absolute;
background:inherit;
border-radius:50%;
top:-5px;
}
完事~,484炒鸡捡蛋。ღ( ´・ᴗ・` )比心复制代码