Css X

by HugeHugh

HTML

<div class="x-con">
  <div class="x top">
  </div>
  <div class="x bottom">
  </div>
</div>

CSS

.x-con {
  width: 9pt;
  height: 9pt;
  position: relative;
}
.x-con .x {
  position: absolute;
  top: calc(50% - 0.2pt);
  width: 100%;
  left: 0;
  height: 0;
  border-bottom: 1pt solid black;
}
.x-con .top {
  transform: rotate(45deg);
}
.x-con .bottom {
  transform: rotate(-45deg);
}