Skip to content

Commit

Permalink
remove extra " (#28218)
Browse files Browse the repository at this point in the history
* remove extra `"`

* run prettier format
  • Loading branch information
yin1999 authored Jul 28, 2023
1 parent a8481a3 commit 4a428ef
Showing 1 changed file with 33 additions and 5 deletions.
38 changes: 33 additions & 5 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 @@ -1978,11 +1978,39 @@ We can start with a completely semantic, accessible, unordered list of {{htmlele
<fieldset>
<legend>Pick a fruit</legend>
<ul class="styledSelect">
<li><input type="radio" name="fruit" value="Cherry" id="fruitCherry" checked><label for="fruitCherry">Cherry</label></li>
<li><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></li>
<li><input type="radio" name="fruit" value="Strawberry" id="fruitStrawberry"><label for="fruitStrawberry">Strawberry</label></li>
<li><input type="radio" name="fruit" value="Apple" id="fruitApple"><label for="fruitApple">Apple</label></li>
<li>
<input
type="radio"
name="fruit"
value="Cherry"
id="fruitCherry"
checked /><label for="fruitCherry">Cherry</label>
</li>
<li>
<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
>
</li>
<li>
<input
type="radio"
name="fruit"
value="Strawberry"
id="fruitStrawberry" /><label for="fruitStrawberry">Strawberry</label>
</li>
<li>
<input type="radio" name="fruit" value="Apple" id="fruitApple" /><label
for="fruitApple"
>Apple</label
>
</li>
</ul>
</fieldset>
```
Expand Down

0 comments on commit 4a428ef

Please sign in to comment.