Tree Branches Checkbox
0 viewsmedium
Background:
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="tree-container">
<input type="checkbox" id="tree-check" />
<label for="tree-check" class="tree-label">
<span class="tree-growth">
<span class="tree-trunk"></span>
<span class="tree-branch branch-1"></span>
<span class="tree-branch branch-2"></span>
<span class="tree-leaf leaf-1"></span>
<span class="tree-leaf leaf-2"></span>
</span>
<span class="tree-text">Tree Branches</span>
</label>
</div>Tree Branches Checkbox
0 viewsmedium
Background:
Tree Branches Checkbox
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="tree-container">
<input type="checkbox" id="tree-check" />
<label for="tree-check" class="tree-label">
<span class="tree-growth">
<span class="tree-trunk"></span>
<span class="tree-branch branch-1"></span>
<span class="tree-branch branch-2"></span>
<span class="tree-leaf leaf-1"></span>
<span class="tree-leaf leaf-2"></span>
</span>
<span class="tree-text">Tree Branches</span>
</label>
</div>Was this helpful?
What is inside Tree Branches Checkbox
Tree Branches Checkbox is a CSS checkbox built with transforms, defined in 92 lines across 17 selectors.
21
CSS properties
17
Selectors
92
Lines of CSS
3
Formats
Techniques used
TransitionsTransformsChecked stateFlexbox
CSS properties in this component
align-itemsbackgroundborder-radiusbottomcolorcursordisplayfont-weightgapheightinputjustify-contentleftopacitypositiontoptransformtransform-origintransitiontransition-delaywidthAccessibility 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.