aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/li
diff options
context:
space:
mode:
authorJason Lee <huacnlee@gmail.com>2022-01-04 17:38:26 +0800
committerIrvin <irvinfly@gmail.com>2022-02-15 22:48:15 +0800
commit01b845e6d402777fe03cc4dd7ed5f21af400eed1 (patch)
treeb3d3d8272d9c7c5207ebb016d072a10d9b7e04ea /files/zh-cn/web/html/element/li
parentc1ed2f39d8921536444e3334bab549d7100a286e (diff)
downloadtranslated-content-01b845e6d402777fe03cc4dd7ed5f21af400eed1.tar.gz
translated-content-01b845e6d402777fe03cc4dd7ed5f21af400eed1.tar.bz2
translated-content-01b845e6d402777fe03cc4dd7ed5f21af400eed1.zip
Improve copywriting for add spaces between Chinese and English words for files/zh-cn/web/html/element.
Diffstat (limited to 'files/zh-cn/web/html/element/li')
-rw-r--r--files/zh-cn/web/html/element/li/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/html/element/li/index.html b/files/zh-cn/web/html/element/li/index.html
index 2a67616ff5..b9e59a4a13 100644
--- a/files/zh-cn/web/html/element/li/index.html
+++ b/files/zh-cn/web/html/element/li/index.html
@@ -5,7 +5,7 @@ translation_of: Web/HTML/Element/li
---
<p>{{HTMLRef}}</p>
-<p><strong>HTML <code>&lt;li&gt;</code> 元素</strong> (或称 <em>HTML 列表条目元素)</em> 用于表示列表里的条目。它必须包含在一个父元素里:一个有序列表({{HTMLElement("ol")}}),一个无序列表({{HTMLElement("ul")}}),或者一个菜单 ({{HTMLElement("menu")}})。在菜单或者无序列表里,列表条目通常用点排列显示;在有序列表里,列表条目通常在左边显示按升序排列的计数,例如数字或者字母。</p>
+<p><strong>HTML <code>&lt;li&gt;</code> 元素</strong> (或称 <em>HTML 列表条目元素)</em> 用于表示列表里的条目。它必须包含在一个父元素里:一个有序列表 ({{HTMLElement("ol")}}),一个无序列表 ({{HTMLElement("ul")}}),或者一个菜单 ({{HTMLElement("menu")}})。在菜单或者无序列表里,列表条目通常用点排列显示;在有序列表里,列表条目通常在左边显示按升序排列的计数,例如数字或者字母。</p>
<table class="properties">
<tbody>
@@ -42,7 +42,7 @@ translation_of: Web/HTML/Element/li
<dl>
<dt>{{htmlattrdef("value")}}</dt>
- <dd>这个整数型属性表明了本 {{HTMLElement("li")}} 元素在有序列表 (由 {{HTMLElement("ol")}} 元素定义)中的序号。本属性值只能用数字,即使列表使用罗马数字或字母来展示。随后的列表条目会从设置的值开始计数。<strong>value</strong> 属性对于无序列表 ({{HTMLElement("ul")}}) 或者菜单 ({{HTMLElement("menu")}}) 无效。
+ <dd>这个整数型属性表明了本 {{HTMLElement("li")}} 元素在有序列表(由 {{HTMLElement("ol")}} 元素定义)中的序号。本属性值只能用数字,即使列表使用罗马数字或字母来展示。随后的列表条目会从设置的值开始计数。<strong>value</strong> 属性对于无序列表 ({{HTMLElement("ul")}}) 或者菜单 ({{HTMLElement("menu")}}) 无效。
<div class="note"><strong>注:</strong> 这个属性在 HTML 4 中废弃,但是在 HTML 5 中重新引入。</div>
<div class="note">