Home > Article > Web Front-end > 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
Function: Define list items.
Note: The
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>
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!