checkbox-custom-styles.md
HTML document, ASCII text, with very long lines (1432)
title: Customize an HTML Checkbox date: 2022 Feb 19 --- Checkboxes are hard to style. But when you're making a website, they may look ugly.checkbox" /As you can see here, this bland checkbox does not fit into my clearly great website(/s). But really, it does not fit in at all.The first step toward styling it how we want it is to give it an appearence of none, and a width and height that are what you want.input[type="checkbox"] {1em"appearance: none;width: 15px;height: 15px;}none;width:15px;height:15px"/Now we can do whatever we want to it. Also, remeber to add a checked pseudoinput[type="checkbox"] {1em"appearance: none;width: 15px;height: 15px;background: #555;border: 1px #252525 solid;border-radius: 2px;}input[type="checkbox"]:checked {1em"background: #ce5aff;}input[type="checkbox"].examplecheckbox3_:checked {background: #ce5aff;}input[type="checkbox"].examplecheckbox3_ {background: #555;}none;width:15px;height:15px;border-radius:2px;border:1px #252525 solid"/
1--- 2title: Customize an HTML Checkbox 3date: 2022 Feb 19 4--- 5<p>Checkboxes are hard to style. But when you're making a website, they may look ugly.</p><input type="checkbox" style="appearance:checkbox" /><p>As you can see here, this bland checkbox does not fit into my clearly great website(/s). But really, it does not fit in at all.</p><p>The first step toward styling it how we want it is to give it an appearence of none, and a width and height that are what you want.</p><div class="code-container"><div class="code">input[type="checkbox"] {<div style="margin-left:1em">appearance: none;<br />width: 15px;<br />height: 15px;</div>}</div><div class="preview"><input type="checkbox" style="appearance:none;width:15px;height:15px"/></div></div><p>Now we can do whatever we want to it. Also, remeber to add a checked pseudo</p><div class="code-container"><div class="code">input[type="checkbox"] {<div style="margin-left:1em">appearance: none;<br />width: 15px;<br />height: 15px;<br />background: #555;<br />border: 1px #252525 solid;<br />border-radius: 2px;</div>}<br /><br />input[type="checkbox"]:checked {<div style="margin-left:1em">background: #ce5aff;</div>}</div><div class="preview"><style>input[type="checkbox"].examplecheckbox3_:checked {background: #ce5aff;}input[type="checkbox"].examplecheckbox3_ {background: #555;}</style><input type="checkbox" class="examplecheckbox3_" style="appearance:none;width:15px;height:15px;border-radius:2px;border:1px #252525 solid"/></div></div>