Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
jasonren0403 and github-actions[bot] authored Sep 19, 2024
1 parent 589478b commit 31cff91
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions files/zh-cn/web/html/attributes/multiple/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ l10n:
### email 输入

```html
<label for="emails">想要将邮件发送给谁?</label><input
<label for="emails">想要将邮件发送给谁?</label
><input
type="email"
multiple
name="emails"
Expand Down Expand Up @@ -97,15 +98,17 @@ input:invalid {
```html
<form method="post" enctype="multipart/form-data">
<p>
<label for="uploads">选择要上传的图像:</label><input
<label for="uploads">选择要上传的图像:</label
><input
type="file"
id="uploads"
name="uploads"
accept=".jpg, .jpeg, .png, .svg, .gif"
multiple />
</p>
<p>
<label for="text">选择要上传的文本文件:</label><input type="file" id="text" name="text" accept=".txt" />
<label for="text">选择要上传的文本文件:</label
><input type="file" id="text" name="text" accept=".txt" />
</p>
<p>
<input type="submit" value="提交" />
Expand All @@ -126,7 +129,8 @@ input:invalid {
```html
<form method="get" action="#">
<p>
<label for="dwarfs">选择你喜欢的小矮人樵夫:</label><select multiple name="dwarfs" id="dwarfs">
<label for="dwarfs">选择你喜欢的小矮人樵夫:</label
><select multiple name="dwarfs" id="dwarfs">
<option>[email protected]</option>
<option>[email protected]</option>
<option>[email protected]</option>
Expand All @@ -137,7 +141,8 @@ input:invalid {
</select>
</p>
<p>
<label for="favoriteOnly">选择你最喜欢的小矮人:</label><select name="favoriteOnly" id="favoriteOnly">
<label for="favoriteOnly">选择你最喜欢的小矮人:</label
><select name="favoriteOnly" id="favoriteOnly">
<option>[email protected]</option>
<option>[email protected]</option>
<option>[email protected]</option>
Expand Down

0 comments on commit 31cff91

Please sign in to comment.