おしゃれなCSSボタンデザイン!実務ですぐ使えて、コピペできるコードをご紹介。
2024.03.23

今回は、私が実務でよく使っているCSSボタンを紹介します。
おしゃれなボタンや遊び心があるボタンをまとめましたので、HTMLとCSSをそれぞれコピペしてお使いください。また、三角アイコンや矢印アイコンなども画像を一切使わずにCSSのみで表現しておりますし、ホバーすると動くアニメーション付きのコードです。
ぜひ皆さまのホームページやブログなどに合わせて、色や形、サイズなどカスタマイズしてみてください!また、ボタンのコードは随時更新していきますので、おしゃれなCSSボタンをもっと知りたい方はこのページをチェックしてくださいね♪
※皆さまの環境により多少違いが出てしまう可能性があります。その際は都度調整をお願いします。
目次
かわいい・ポップなイメージ
かわいい・ポップなサイトで使えるCSSボタンを紹介します。
下に押し込めるボタン
<a href="#" class="btn001-01">view more</a>
.btn001-01 {
width: 100%;
max-width: 180px;
height: 60px;
position: relative;
text-decoration: none;
outline: none;
display: flex;
justify-content: center;
align-items: center;
border-radius: 9999px;
border: 1px solid #045cd4;
color: #045cd4;
background-color: #fff;
box-shadow: 0 6px 0 #045cd4;
transition: all 0.3s ease;
}
/* ホバーアニメーション */
.btn001-01:hover {
color: #fff;
background-color: #045cd4;
box-shadow: 0 0 0 #045cd4;
transform: translateY(6px);
}
矢印付きシンプルボタン
<a href="#" class="btn001-02">view more<span></span></a>
.btn001-02 {
width: 100%;
max-width: 180px;
height: 60px;
padding: 0 20px;
position: relative;
text-decoration: none;
outline: none;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 9999px;
border: 1px solid #ef5a2c;
color: #ef5a2c;
background-color: #fff;
transition: all 0.3s ease;
}
/* 矢印アイコン */
.btn001-02 span {
position: relative;
display: block;
width: 20px;
height: 1px;
border-radius: 10px;
background-color: #ef5a2c;
transition: all 0.3s ease;
}
.btn001-02 span::before,
.btn001-02 span::after {
content: "";
position: absolute;
right: -3px;
display: block;
width: 10px;
height: 1px;
border-radius: 10px;
background-color: #ef5a2c;
transition: all 0.3s ease;
}
.btn001-02 span::before {
top: 3px;
transform: rotate(-45deg);
}
.btn001-02 span::after {
bottom: 3px;
transform: rotate(45deg);
}
/* ホバーアニメーション */
.btn001-02:hover {
color: #fff;
background-color: #ef5a2c;
}
.btn001-02:hover span {
background-color: #fff;
}
.btn001-02:hover span::before,
.btn001-02:hover span::after {
background-color: #fff;
}
丸が一回転するボタン
<a href="#" class="btn001-03">
<span class="text">view more</span>
<div class="arrow">
<span class="arrow__item01"></span>
<span class="arrow__item02"></span>
</div>
</a>
.btn001-03 {
width: 100%;
max-width: 180px;
height: 60px;
padding: 0 20px;
position: relative;
text-decoration: none;
outline: none;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 9999px;
background-color: #009944;
transition: all 0.3s ease;
}
/* テキスト */
.btn001-03 .text {
color: #fff;
position: relative;
}
.btn001-03 .text::after {
content: '';
position: absolute;
left: 0;
width: 100%;
height: 1px;
background: #fff;
bottom: -6px;
transform: scale(0, 1);
transform-origin: right top;
transition: transform 0.3s;
}
/* 三角アイコン */
.btn001-03 .arrow {
width: 30px;
height: 30px;
position: relative;
display: grid;
place-items: center;
background-color: #fff;
border-radius: 30px;
overflow: hidden;
}
.btn001-03 .arrow span {
width: 10px;
height: 10px;
background-color: #009944;
border-radius: 12px;
}
.btn001-03 .arrow__item02 {
position: absolute;
transform: translateX(-250%);
}
/* ホバーアニメーション */
.btn001-03:hover .text::after {
transform: scale(1, 1);
transform-origin: left top;
}
.btn001-03:hover .arrow__item01 {
transition: transform 0.3s ease-in-out;
transform: translateX(250%);
}
.btn001-03:hover .arrow__item02 {
transition: transform 0.3s ease-in-out 0.1s;
transform: translate(0);
}
内側の枠線と影付きボタン
<a href="#" class="btn001-04">view more</a>
.btn001-04 {
margin-bottom: 6px;
width: 100%;
max-width: 180px;
height: 60px;
position: relative;
text-decoration: none;
outline: none;
display: flex;
justify-content: center;
align-items: center;
border-radius: 9999px;
background-color: #f7f1e4;
box-shadow: 6px 6px 0 #a46305;
transition: all 0.3s ease;
}
/* 内側の点線 */
.btn001-04::before {
content: '';
width: calc(100% - 10px);
height: calc(100% - 10px);
position: absolute;
top: 5px;
left: 5px;
z-index: 2;
display: block;
border: 2px dotted #e9d062;
border-radius: 9999px;
}
/* 三角アイコン */
.btn001-04::after {
content: '';
position: absolute;
top: calc(50% - 3px);
right: 30px;
display: block;
width: 11px;
height: 9px;
background-color: #a46305;
clip-path: polygon(0 0, 0 100%, 100% 50%);
transition: all 0.3s ease;
}
/* ホバーアニメーション */
.btn001-04:hover {
color: #a46305;
box-shadow: 0 0 0 #e9d062;
transform: translateY(6px);
}
.btn001-04:hover::after {
right: 25px;
}
スタイリッシュなイメージ
スタイリッシュなサイトで使えるCSSボタンを紹介します。
背景が伸び丸が大きくなるボタン
<a href="#" class="btn002-01">
<span class="text">view more</span>
</a>
.btn002-01 {
width: 100%;
max-width: 180px;
height: 60px;
padding: 0 20px;
position: relative;
text-decoration: none;
outline: none;
display: flex;
border-radius: 9999px;
background-color: #fff;
transition: all 0.3s ease, background-color 0.3s;
overflow: hidden;
background-size: 400%;
}
/* 伸びてくる背景 */
.btn002-01::before {
content: "";
position: absolute;
top: 0;
left: -10px;
z-index: 2;
transform: scaleX(0);
transform-origin: 0 50%;
width: 110%;
height: inherit;
border-radius: inherit;
background-color: #0032C6;
transition: all 0.3s ease;
}
/* 丸アイコン */
.btn002-01::after {
content: '';
position: absolute;
top: calc(50% - 4px);
right: 20px;
z-index: 3;
display: inline-block;
width: 8px;
height: 8px;
background-color: #0032C6;
border-radius: 20px;
transition: all 0.3s ease;
}
/* テキスト */
.btn002-01 .text {
position: relative;
position: absolute;
top: 50%;
left: 20px;
z-index: 3;
transform: translateY(-50%);
transition: all 0.3s ease;
}
/* ホバーアニメーション */
.btn002-01:hover::before {
transform: scaleX(1);
}
.btn002-01:hover .text {
color: #fff;
}
.btn002-01:hover::after {
background-color: #fff;
transform-origin: center;
transform: scale(2);
}
矢印が一回転するボタン
<a href="#" class="btn002-02">
view more
<div class="arrow">
<span class="arrow__item01"></span>
<span class="arrow__item02"></span>
</div>
</a>
.btn002-02 {
height: 60px;
position: relative;
text-decoration: none;
outline: none;
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
transition: all 0.3s ease;
}
/* くの字アイコン */
.btn002-02 .arrow {
width: 60px;
height: 60px;
position: relative;
display: grid;
place-items: center;
background-color: #1887f0;
border-radius: 30px;
overflow: hidden;
}
.btn002-02 .arrow span {
margin-left: 7px;
clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
height: 14px;
aspect-ratio: 1;
background-color: #fff;
}
.btn002-02 .arrow__item02 {
position: absolute;
transform: translateX(-400%);
}
/* ホバーアニメーション */
.btn002-02:hover .arrow__item01 {
transition: transform 0.3s ease-in-out;
transform: translateX(400%);
}
.btn002-02:hover .arrow__item02 {
transition: transform 0.3s ease-in-out 0.1s;
transform: translate(0);
}
下線が伸び十字が変化するボタン
<a href="#" class="btn002-03">
view more
<span></span>
</a>
.btn002-03 {
width: 100%;
max-width: 160px;
height: 60px;
position: relative;
text-decoration: none;
outline: none;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}
/* 下線が伸びる */
.btn002-03::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
display: block;
width: 100%;
height: 1px;
background-color: #ddd;
}
.btn002-03::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
background-color: #000;
display: block;
width: 0;
height: 1px;
transition: .3s all ease;
}
/* プラスアイコン */
.btn002-03 span {
display: inline-block;
vertical-align: middle;
color: #333;
line-height: 1;
width: 13px;
height: 1px;
background: currentColor;
position: relative;
}
.btn002-03 span::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: inherit;
border-radius: inherit;
transform: rotate(90deg);
transition: .3s all ease;
}
/* ホバーアニメーション */
.btn002-03:hover::after {
width: 100%;
}
.btn002-03:hover span::before {
transform: rotate(0);
}
おしゃれな矢印付きボタン
<a href="#" class="btn002-04">
<div class="arrow"><span></span></div>
view more
</a>
.btn002-04 {
width: 100%;
max-width: 180px;
height: 60px;
padding: 0 25px 0 10px;
position: relative;
text-decoration: none;
outline: none;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 9999px;
color: #9f8f83;
background-color: #fff;
border: 1px solid #b7aca4;
transition: all 0.3s ease;
}
/* 矢印アイコン */
.btn002-04 .arrow {
width: 40px;
height: 40px;
display: grid;
place-items: center;
background-color: #b7aca4;
border-radius: 40px;
overflow: hidden;
transition: all 0.3s ease;
}
.btn002-04 .arrow span {
position: relative;
right: 2px;
width: 16px;
height: 6px;
border-bottom: 1px solid #fff;
border-right: 2px solid #fff;
transform: skew(45deg);
transition: all 0.3s ease;
}
/* ホバーアニメーション */
.btn002-04:hover {
color: #fff;
background-color: #b7aca4;
}
.btn002-04:hover .arrow {
background-color: #fff;
}
.btn002-04:hover .arrow span {
border-color: #9f8f83;
}