Home > Web Front-end > HTML Tutorial > What element is the li tag?

What element is the li tag?

云罗郡主
Release: 2019-02-01 16:49:14
Original
20186 people have browsed it

What element is the li tag?

What element is the li tag?

The li tag is called list item. It is an element tag in the HTML language and belongs to the list tag. It starts with

  • ends. The
  • tag can be used in ordered lists (
      ) and unordered lists (
      ). [Recommended tutorial: HTMLTutorial]

      Function: Define list items.

      Note: The

    • tag can be used in ordered lists (
        ) and unordered lists (
        ).

        Note: Please use CSS to define the types of lists and list items.

        html li tag example

        <html>
        <body>
        <p>有序列表:</p>
        <ol>
        <li>打开冰箱门</li>
        <li>把大象放进去</li>
        <li>关上冰箱门</li>
        </ol>
        <p>无序列表:</p>
        <ul>
        <li>雪碧</li>
        <li>可乐</li>
        <li>凉茶</li>
        </ul>
        </body>
        </html>
        Copy after login


  • The above is the detailed content of What element is the li tag?. For more information, please follow other related articles on the PHP Chinese website!

    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template