CodeBox
リクエスト
クラス名
クラス名
文言
文言
サイズ
上
10
右
62
下
10
左
36
角丸
0
色
背景色(開始)
枠線色(終了)
文字色
角度
0
アイコン
非表示
アイコンサイズ
24
端からの距離
8
アイコン幅
2
左
右
アイコン種類
ボタン
HTMLコード
<a class="btn"> ボタン <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#fff" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M9 18l6-6-6-6" /></svg> </a>
CSSコード
.btn { display: inline-block; padding-top: 10px; padding-right: 62px; padding-bottom: 10px; padding-left: 36px; margin: 0px; background-color: #fff; background-image: linear-gradient(0deg, #81C784, #4CAF50); background-size: contain; color: #fff; text-decoration: none; border-width: 0px; border-style: solid; border-color: #424242; border-radius: 0px; cursor: pointer; transition: all 0.3s ease 0s; box-shadow: none; -webkit-appearance: none; line-height: 1.6; position: relative; text-align: left; } .btn:hover { opacity: 0.7; } .btn svg { width: 24px; height: auto; position: absolute; top: 50%; left: auto; transform: translateY(-50%); transition: all 0.3s ease 0s; stroke: #fff; stroke-width: 2px; right: 8px; } .btn:hover svg { stroke: undefined; }