【补充】送给你们的小心心之css伪元素

326 阅读1分钟

#涉及的知识点:

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炒鸡捡蛋。ღ( ´・ᴗ・` )!