ホームページ > 記事 > ウェブフロントエンド > 純粋な CSS を使用して HTML を変更するにはどうすればよいですか?ラジオ/チェックボックスのデフォルトの背景色のスタイル
この記事の内容は、純粋な CSS を使用して HTML を変更する方法についてです。ラジオ/チェックボックスのデフォルトの背景色スタイルは、参考にしていただければ幸いです。
CSS コード:
input[type=checkbox] { margin-right: 5px; cursor: pointer; font-size: 14px; width: 15px; height: 12px; position: relative; } input[type=checkbox]:after { position: absolute; width: 10px; height: 15px; top: 0; content: " "; background-color: #ff0000; color: #fff; display: inline-block; visibility: visible; padding: 0px 3px; border-radius: 3px; } input[type=checkbox]:checked:after { content: "✓"; font-size: 12px; } input[type=radio] { margin-right: 5px; cursor: pointer; font-size: 14px; width: 15px; height: 12px; position: relative; } input[type=radio]:after { position: absolute; width: 10px; height: 15px; top: 0; content: " "; background-color: #ff0000; color: #fff; display: inline-block; visibility: visible; padding: 0px 3px; border-radius: 50%; } input[type=radio]:checked:before { content: "✓"; display: block; position: relative; top: -2px; left: 3px; width: 6px; height: 6px; color: #fff; font-weight: 400; z-index: 1; }
HTML 例:
<input type="checkbox" name="method" value="plus" checked>plus<br> <input type="checkbox" name="method" value="minus">minus<br> <input type="radio" name="method" value="plus">plus<br> <input type="radio" name="method" value="minus" checked>minus<br>
上記は、純粋な CSS を使用して HTML を変更する方法の紹介です。ラジオ/チェックボックスのデフォルトの背景色スタイルの完全な紹介 CSS3 ビデオ チュートリアル について詳しく知りたい場合は、PHP 中国語 Web サイトに注目してください。
以上が純粋な CSS を使用して HTML を変更するにはどうすればよいですか?ラジオ/チェックボックスのデフォルトの背景色のスタイルの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。