Neon Circle Checkbox
0 viewsmedium
Background:
1
2
3
4
5
6
7
8
9
10
<label class="neon-container">
<input type="checkbox" />
<div class="neon-checkmark">
<div class="neon-inner">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="3"/>
</svg>
</div>
</div>
</label>Neon Circle Checkbox
0 viewsmedium
Background:
Neon Circle Checkbox
1
2
3
4
5
6
7
8
9
10
<label class="neon-container">
<input type="checkbox" />
<div class="neon-checkmark">
<div class="neon-inner">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="3"/>
</svg>
</div>
</div>
</label>Was this helpful?
What is inside Neon Circle Checkbox
Neon Circle Checkbox is a CSS checkbox built with layered shadows, defined in 46 lines across 7 selectors.
17
CSS properties
7
Selectors
46
Lines of CSS
3
Formats
Techniques used
TransitionsShadowsChecked stateFlexbox
CSS properties in this component
align-itemsbackgroundborderborder-colorborder-radiusbox-shadowcursordisplayfillheightinputjustify-contentopacitypositiontransitionuser-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.