heart shape

by jshacker

HTML

<div id="heart"></div>

CSS

div {
  height: 120px;
  width: 80px;
  background-color: red;
  position: relative;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%);
}

#heart {
  transform: rotate(45deg);
  border-radius: 50% 50% 2% 2%;
}

#heart::after {
  background-color: red;
  content: " ";
  height: 80px;
  width: 120px;
  position: absolute;
  bottom: -2%;
  left: -52%;
  border-radius: 50% 2% 2% 50%;
}