What is the list? List Types

As a rule, some information is best presented as a list. The types of lists allow you to do this as conveniently as possible. If the user sees solid text, it will be inconvenient for him to read.

Thanks to the lists, it is easier for the user to read any enumerated items than on one line. That is why they are constantly used both on sites and in Word documents and other text editors.

HTML List Views

Lists are numbered and marked, which are also called unnumbered.

The numbered lists use Arabic, Roman numerals, letters and everything else, so you can make an enumeration.

In bulleted lists, various markers are used (points, circles, squares, arrows, and so on).

Here are some examples of sorting items in lists.

list types of lists




. . .

html list views




, .





html . html- . . . .

:

<ol>

<li> 1</li>

<li> 2</li>

<li> 3</li>

</ol>

, . . .

:

<ul>

<li> 1</li>

<li> 2</li>

<li> 3</li>

</ul>

, ol, - ul.

Word

Word . , html- "". .

html, Word. html-.

, Microsoft Word. "". .

types of lists in word




- , . . .









word list types




, .

multilevel word list




Word . . , , .

word numbering




, .

bullet list word




. , 10- 12-. 1- . "10".

set initial value to list in word




, .

3- , , .

start numbering again from one




. . "" " ".

word list types




. . ( ) , (, , ).

html

. . decimal, disc, circle . list-style-type.

:

.sort {

list-style-type:disc;

}

sort - , .

Word . . html.

start. "5":

<ol start="5">

<li> 1</li>

<li> 2</li>

<li> 3</li>

</ol>

5, 6 7, 1, 2 3.

, : . - .

marker location in the list




CSS. :

  • ;
  • ;
  • ;
  • ;
  • ;
  • ;
  • ;
  • ;
  • ;
  • ;
  • , , .

, :

beautiful list with round items




- . . .




All Articles