Skip to content

Commit

Permalink
bugfix: 单词错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacker-C committed Mar 22, 2022
1 parent 482ff3e commit 7adabd9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions HTML/ch03.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
| 属性值 | 描述 |
| -------- | ---------------------------------------------------- |
| button | 定义可点击按钮 |
| chekbox | 复选框 |
| checkox | 复选框 |
| file | 定义输入字段和“浏览”按钮,供文件上传 |
| hidden | 定义隐藏的输入字段 |
| image | 定义图像形式的提交按钮 |
Expand Down Expand Up @@ -219,7 +219,8 @@
**语法:**

```html
<label for="sex">男</label> <input type="radio" name="sex" id="sex" />
<label for="sex">男</label>
<input type="radio" name="sex" id="sex" />
```

**核心:**
Expand Down Expand Up @@ -255,5 +256,4 @@
</textarea>
```

> [!TIP]
> `cols="每行字符数",rows="显示的行数"`
> [!TIP] > `cols="每行字符数",rows="显示的行数"`

0 comments on commit 7adabd9

Please sign in to comment.