Skip to content

Instantly share code, notes, and snippets.

@solid-pixel
solid-pixel / index.html
Created September 14, 2018 08:33
Custom radio button CSS only
<form action="#">
<p>
<input type="radio" id="test1" name="radio-group" checked>
<label for="test1">Apple</label>
</p>
<p>
<input type="radio" id="test2" name="radio-group">
<label for="test2">Peach</label>
</p>
<p>