Skip to content

Commit

Permalink
Lint block in somewhat sensible way (mdn#28230)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishwillee authored Jul 28, 2023
1 parent fc01d4b commit bcf5e95
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions files/en-us/learn/forms/how_to_build_custom_form_controls/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1984,32 +1984,28 @@ We can start with a completely semantic, accessible, unordered list of {{htmlele
name="fruit"
value="Cherry"
id="fruitCherry"
checked /><label for="fruitCherry">Cherry</label>
checked />
<label for="fruitCherry">Cherry</label>
</li>
<li>
<input type="radio" name="fruit" value="Lemon" id="fruitLemon" /><label
for="fruitLemon"
>Lemon</label
>
<input type="radio" name="fruit" value="Lemon" id="fruitLemon" />
<label for="fruitLemon">Lemon</label>
</li>
<li>
<input type="radio" name="fruit" value="Banana" id="fruitBanana" /><label
for="fruitBanana"
>Banana</label
>
<input type="radio" name="fruit" value="Banana" id="fruitBanana" />
<label for="fruitBanana">Banana</label>
</li>
<li>
<input
type="radio"
name="fruit"
value="Strawberry"
id="fruitStrawberry" /><label for="fruitStrawberry">Strawberry</label>
id="fruitStrawberry" />
<label for="fruitStrawberry">Strawberry</label>
</li>
<li>
<input type="radio" name="fruit" value="Apple" id="fruitApple" /><label
for="fruitApple"
>Apple</label
>
<input type="radio" name="fruit" value="Apple" id="fruitApple" />
<label for="fruitApple">Apple</label>
</li>
</ul>
</fieldset>
Expand Down

0 comments on commit bcf5e95

Please sign in to comment.