リンク – 001

プレビュー

コードの紹介

html

<a href="#" class="cLinkButton">1st code</a>

CSS

.cLinkButton {
  padding: 8px 24px;
  color: #000;
  text-decoration: none;
  position: relative;
}

.cLinkButton:before {
  content: "";
  width: 0%;
  height: 2px;
  display: block;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.cLinkButton:hover::before {
  width: 100%;
}