纯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);
}

 

posted @ 2022-04-29 17:19  如意酱  阅读(30)  评论(0编辑  收藏  举报