リンクボタン – 002

プレビュー

コードの紹介

html

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

CSS

.cLinkButton {
  text-decoration: none;
  color: #000;
  border: 2px solid #000;
  padding: 8px 16px;
  display: inline-block;

  position: relative;
  overflow: hidden;
}
.cLinkButton::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #000;

  position: absolute;
  left: -100%;
  top: 0;
  transition: all 0.4s;
}
.cLinkButton:hover {
  color: #fff;
}
.cLinkButton:hover::before {
  left: 0%;
  z-index: -1;
}