Choice Radio
Exclusive radio buttons
Preview
HTML
<fieldset>
<legend>Measure</legend>
<label><input type="radio" name="measure" checked> Narrow</label>
<label><input type="radio" name="measure"> Wide</label>
</fieldset>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
fieldset {
display: grid;
gap: 0.45rem;
min-width: min(100%, 14rem);
margin: 0;
padding: 0.8rem 1rem;
border: 1px solid var(--line);
border-radius: 0.9rem;
background: var(--paper);
}
legend { font-weight: 800; }
label {
display: flex;
align-items: center;
gap: 0.45rem;
}
input { accent-color: var(--ink); }