技術ブログ
近年メールフォーム周りのデザインがオシャレにデザインされているサイトが増えてきました。
メールフォームはテキスト入力、チェックボックスなど様々な入力方法で構成されています。
今回はその中からラジオボタンのデザイン変更方法について紹介します。
ラジオボタンの色を変える
■HTML
<input id="g1" checked="checked" name="radio01" type="radio" /><label class="radio01" for="g1">リンゴ</label><br>
<input id="g2" name="radio01" type="radio" /><label class="radio01" for="g2">ミカン</label><br>
<input id="g3" name="radio01" type="radio" /><label class="radio01" for="g3">バナナ</label>
■css
input[type=radio] {
display: none;
}
.radio01 {
box-sizing: border-box;
cursor: pointer;
display: inline-block;
padding: 5px 30px;
position: relative;
width: auto;
}
.radio01::before {
background: #fff;
border: 1px solid #183c30;
border-radius: 50%;
content: '';
display: block;
height: 16px;
left: 5px;
margin-top: -8px;
position: absolute;
top: 50%;
width: 16px;
}
.radio01::after {
background: #7aedc8;
border-radius: 50%;
content: '';
display: block;
height: 10px;
left: 9px;
margin-top: -4px;
opacity: 0;
position: absolute;
top: 50%;
width: 10px;
}
input[type=radio]:checked + .radio01::after {
opacity: 1;
}
input[type="radio"],input[type="checkbox"]{
position: relative;
top: 2px;
}
大阪のホームページ制作会社TREVOでは、ホームページ制作に関する情報を掲載しています。最短2日で仮サイトを公開するサービスやSEO対策に特化したホームページ制作、オリジナルホームページデザイン、ライティング、リスティング広告、WEBマーケティングなどのサービスをご紹介しています。