#涉及的知識點: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炒雞撿蛋。ღ( ´・ᴗ・` )比心複製代碼