Compact Plus Checkbox
0 viewseasy
Background:
1
2
3
4
5
6
7
8
9
<label class="compact-plus-container">
<input type="checkbox" />
<div class="compact-plus-checkmark">
<svg viewBox="0 0 24 24">
<line x1="12" y1="5" x2="12" y2="19"></line>
<line x1="5" y1="12" x2="19" y2="12"></line>
</svg>
</div>
</label>Compact Plus Checkbox
0 viewseasy
Background:
Compact Plus Checkbox
1
2
3
4
5
6
7
8
9
<label class="compact-plus-container">
<input type="checkbox" />
<div class="compact-plus-checkmark">
<svg viewBox="0 0 24 24">
<line x1="12" y1="5" x2="12" y2="19"></line>
<line x1="5" y1="12" x2="19" y2="12"></line>
</svg>
</div>
</label>Was this helpful?
What is inside Compact Plus Checkbox
Compact Plus Checkbox is a CSS checkbox built with transforms, defined in 42 lines across 6 selectors.
19
CSS properties
6
Selectors
42
Lines of CSS
3
Formats
Techniques used
TransitionsTransformsChecked stateFlexbox
CSS properties in this component
align-itemsbackgroundborderborder-colorborder-radiuscursordisplayfillheightinputjustify-contentopacitypositionstrokestroke-widthtransformtransitionuser-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.