Flower Blooming Checkbox
0 viewsmedium
Background:
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="flower-container">
<input type="checkbox" id="flower-check" />
<label for="flower-check" class="flower-label">
<span class="flower-bloom">
<span class="flower-center"></span>
<span class="flower-petal petal-1"></span>
<span class="flower-petal petal-2"></span>
<span class="flower-petal petal-3"></span>
<span class="flower-petal petal-4"></span>
</span>
<span class="flower-text">Flower Blooming</span>
</label>
</div>Flower Blooming Checkbox
0 viewsmedium
Background:
Flower Blooming Checkbox
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="flower-container">
<input type="checkbox" id="flower-check" />
<label for="flower-check" class="flower-label">
<span class="flower-bloom">
<span class="flower-center"></span>
<span class="flower-petal petal-1"></span>
<span class="flower-petal petal-2"></span>
<span class="flower-petal petal-3"></span>
<span class="flower-petal petal-4"></span>
</span>
<span class="flower-text">Flower Blooming</span>
</label>
</div>Was this helpful?
What is inside Flower Blooming Checkbox
Flower Blooming Checkbox is a CSS checkbox built with transforms, defined in 86 lines across 16 selectors.
23
CSS properties
16
Selectors
86
Lines of CSS
3
Formats
Techniques used
TransitionsTransformsChecked stateFlexbox
CSS properties in this component
align-itemsbackgroundborder-radiusbottomcolorcursordisplayfont-weightgapheightinputjustify-contentleftopacitypositionrighttoptransformtransform-origintransitiontransition-delaywidthz-indexAccessibility check1 to fix
- Built on a native <input> 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.