Minimal Square Checkbox
0 viewseasy
Background:
1
2
3
4
5
6
7
8
<label class="minimal-container">
<input type="checkbox" />
<div class="minimal-checkmark">
<svg viewBox="0 0 24 24">
<polyline points="20,6 9,17 4,12"></polyline>
</svg>
</div>
</label>Minimal Square Checkbox
0 viewseasy
Background:
Minimal Square Checkbox
1
2
3
4
5
6
7
8
<label class="minimal-container">
<input type="checkbox" />
<div class="minimal-checkmark">
<svg viewBox="0 0 24 24">
<polyline points="20,6 9,17 4,12"></polyline>
</svg>
</div>
</label>Was this helpful?
What is inside Minimal Square Checkbox
Minimal Square Checkbox is a CSS checkbox built from plain CSS with no animation, defined in 39 lines across 6 selectors.
17
CSS properties
6
Selectors
39
Lines of CSS
3
Formats
Techniques used
TransitionsChecked state
CSS properties in this component
backgroundborderborder-colorborder-radiuscursordisplayfillheightinputmarginopacitypositionstrokestroke-widthtransitionuser-selectwidthAccessibility check1 to fix
- Built on a native <label> element, so keyboard focus and screen reader semantics work without extra attributes.
- No focus style is defined. Add one before shipping, or keyboard users lose track of position.
These notes are generated by reading this component's own source, so they describe what it actually does rather than what a template says. Copy the code above in HTML, CSS, Tailwind and adapt it freely.