- デフォルトのボタンスタイル:
.button {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
- ホバーエフェクトを追加したボタン:
.button:hover {
background-color: #3e8e41;
}
- アクティブ状態のボタン:
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
- ボタンのサイズ変更:
.button.large {
padding: 20px 40px;
}
- ボタンのカスタムスタイル:
.button.custom {
background-color: #ff9800;
color: white;
border-radius: 8px;
border: none;
padding: 10px 20px;
font-size: 16px;
}
これらの例は、一般的なボタンスタイルのいくつかを示していますが、デザインや要件に応じてカスタマイズすることができます。必要に応じて、上記のコードを適切に調整してください。