デザインコード紹介

Chapter3 ボタンデザイン

背景色と点と線

更新日:

背景色と点と線のWebデザイン画像

HTML

<a href=""><span>私たちについて</span></a>

CSS

a {
  display: block;
  position: relative;
  padding: 30px 10px;
  width: 260px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background-color: #90be70;
  border-radius: 50%;
}

a span {
  position: relative;
  padding: 10px;
  background-color: #90be70;
  z-index: 1;
}

a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 90%;
  height: 2px;
  background-color: #2b550e;
}

a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 90%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #2b550e;
  border-radius: 10px;
}

できるだけ誌面とコードの色を近づけるように調整しましたが、印刷物と画面表示との差異はどうしても発生してしまいます。サポートサイトでご確認いただける色が実際に表示されます。