纯css画一颗心

 <div class="love"></div>
.love {
  position: relative;
  top: 30px;
  left: 50%;
  width: 30px;
  height: 30px;
  background-color: pink;
}

.love:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: blue;
}

.love:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 14px;
  width: 30px;
  height: 30px;
  background-color: yellow;
  border-radius: 50%;
}

.love:before {
  background-color: pink;
}

.love:after {
  background-color: pink;
}

.love {
  position: relative;
  top: 30px;
  left: 50%;
  width: 30px;
  height: 30px;
  background-color: pink;
  transform: rotate(-45deg);
}

 

相关文章

Css3如何实现鼠标移上变长特效?(图文+视频)
css3怎么实现鼠标悬停图片时缓慢变大效果?(图文+视频)
jquery如何实现点击网页回到顶部效果?(图文+视频)
css3边框阴影效果怎么做?(图文+视频)
css怎么实现圆角边框和圆形效果?(图文+视频教程)
Css3如何实现旋转移动动画特效