Skip to content

Commit

Permalink
[zh-cn]: improve 'html examples guidelines' (#17037)
Browse files Browse the repository at this point in the history
  • Loading branch information
BSPR0002 authored Nov 23, 2023
1 parent 3a2f215 commit 5a632d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Prettier 格式化所有代码并保持风格一致。尽管如此,你仍需

## 属性

你应该把所有的属性值放在双引号之间。自从 HTML5 允许省略引号后,人们很轻易地就会这样做,但是添加引号能让标记更加简洁和易读。例如,这样就比较好:
你应该把所有的属性值放在双引号之间。自从 HTML5 允许省略引号后,人们会很轻易地省略引号,但是添加引号能让标记更加简洁和易读。例如,这样就比较好:

```html example-good
<img src="images/logo.jpg" alt="A circular globe icon" class="no-border" />
Expand Down Expand Up @@ -103,7 +103,7 @@ Prettier 格式化所有代码并保持风格一致。尽管如此,你仍需

## Class 和 ID 名称

使用语义化的 class/ID 名称,并且使用连字符分隔多个单词({{Glossary("kebab_case", "短横线命名法")}})。不要使用{{Glossary("camel_case", "骆驼式命名法")}}。例如:
使用语义化的 class/ID 名称,并且使用连字符分隔多个单词({{Glossary("kebab_case", "短横线命名法")}})。不要使用{{Glossary("camel_case", "驼峰式命名法")}}。例如:

```html example-good
<p class="editorial-summary">其他内容</p>
Expand Down

0 comments on commit 5a632d3

Please sign in to comment.