欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

word中项目符号自动变小_HTML和Word中的项目符号点类型和创建

程序员文章站 2022-05-31 09:06:49
...
word中项目符号自动变小_HTML和Word中的项目符号点类型和创建

word中项目符号自动变小

Bullet Pointis a thick point symbol used to create a top-down list of text to express the start of the item in the list. Bullet points also called as Bullet List in HTML or Word terminology. Even a thick point is used it is called as a bullet.

Bullet Point是一个粗点符号,用于创建自上而下的文本列表以表示列表中项目的开始。 项目符号点在HTML或Word术语中也称为项目Bullet List 。 即使使用了一个粗点,也称为子弹。

项目符号点符号 (Bullet Point Symbols)

Bullet point uses a thick point as default symbol. But there are diferent alternatives which can be used for bullet point. Below you can see different bullet point types for different cases.

项目符号点使用粗点作为默认符号。 但是,有许多不同的替代方法可以用于实现重点。 在下面,您可以看到针对不同情况的不同项目符号点类型。

  • Tick Point

    刻度线
  • Thin point

    薄点
  • Empty point

    空点
  • Square

    广场
  • Grayed point

    灰点
  • Arrow

    箭头
  • Uppercase Letter

    大写字母
  • Lowercase Letter

    小写字母
  • Number

word中项目符号自动变小_HTML和Word中的项目符号点类型和创建
Bullet Point Symbols
项目符号点符号

项目符号点/列表用例(Bullet Point/List Use Cases)

The bullet point is very useful for different cases during documentation, texting, presentation, etc. Bullet points can be used for the following cases.

项目符号点在文档,发短信,演示等过程中的不同情况下非常有用。项目符号点可用于以下情况。

  • Creating note with multiple items

    创建包含多个项目的注释
  • Listing items in presentations

    列出演示文稿中的项目
  • Listing items in technical writing

    列出技术写作中的项目
  • Providing steps to implement some application

    提供实施某些应用程序的步骤
  • Technical writing

    技术写作
  • Listing references

    清单参考

创建HTML的项目符号点/列表(Create Bullet Point/List For HTML)

One of the most popular usage cases for bullet point is using HTML documents or web pages. We create different bullet points in web pages by using an HTML List tag. Below we can see a simple bullet list that is used to list countries with thick points.

要点最流行的用法之一是使用HTML文档或网页。 我们使用HTML List标记在网页中创建不同的项目符号。 在下面,我们可以看到一个简单的项目符号列表,该列表用于列出具有粗线的国家。

<html>
<body>

<h2>Disc Bullets</h2>

<ul style="list-style-type:disc;">
<li>Turkey</li>
<li>USA</li>
<li>Germany</li>
<li>England</li>
</ul>

</body>
</html>
word中项目符号自动变小_HTML和Word中的项目符号点类型和创建

HTML provides different styles for bullet list like disc, circle, square, number, letter. For more details take a look following post.

HTML为项目符号列表提供了不同的样式,例如光盘,圆圈,正方形,数字,字母。 有关更多详细信息,请查看以下帖子。

创建单词的项目符号点/列表(Create Bullet Point/List For Word)

Microsoft Office Word is another popular case in order to use bullet points. We can put a bullet from the main toolbar like below.

为了使用项目符号,Microsoft Office Word是另一个流行的案例。 我们可以从主工具栏中添加项目符号,如下所示。

word中项目符号自动变小_HTML和Word中的项目符号点类型和创建
MS Word Bullet Points
MS Word项目符号点

We can also use different bullet point style of the list from the bullet menu like below.

我们还可以从如下所示的项目符号菜单中使用列表的不同项目符号样式。

word中项目符号自动变小_HTML和Word中的项目符号点类型和创建
MS Word Bullet Points Styling
MS Word项目符号点样式
了解更多带有示例HTML项目符号列表教程

翻译自: https://www.poftut.com/bullet-point-types-and-creation-in-html-and-word/

word中项目符号自动变小