Is the tag li a block-level element?

Is the tag li a block-level element?
Why can it set the height, but unlike elements like <h1 />, it feels like it is a "semi-inline" (inline: inline[text]-level) element. HTML 4 describes it this way:

The following elements may also be considered block-level elements since they may contain block-level elements:

  • DD – Definition description
  • DT – Definition term
  • FRAMESET – Frameset
  • LI – List item
  • TBODY – Table body
  • TD – Table data cell
  • TFOOT – Table foot
  • TH – Table header cell
  • THEAD – Table head
  • TR – Table row

This description seems to be saying that <li /> is a "semi-inline" element. Of course, elements like <td /> in this list have also caused me such doubts. Today I took a look at the default CSS of various browsers. The result is this:

Browsers CSS
IE6/IE7 li{display:block; }
IE8+ / Webkit / Firefox / Opera li{display:list-item; }

Here, it is basically clear. In A-Grade browsers other than IE6/7, it is a "semi-inline" element. Speaking of display:list-item; in fact, even though all A-Grade browsers now support it, not many people use it. Why? It's actually useless. In Quirks Mode, PPK says:

display: list-item means that the element is displayed as a list-item, which mainly means that it has a bullet in front of it (like an UL), except in IE 5 on Mac where it gets a number (like an OL). The numbers are buggy: all previous LI's in the page count as one, so this example starts with number 5 (the screenshot was made before I inserted my compatibility-LI's).

Live example:

display: block

display: list-item
display: list-item

Right. Actually, this doesn’t mean much. But it also solved one of my doubts. Share it. If you have such doubts, maybe next time when you encounter a bug or other questions during coding, you will be able to react quickly.

<<:  Seven Principles of a Skilled Designer (1): Font Design

>>:  Mobile terminal adaptation makes px automatically converted to rem

Recommend

js canvas implements verification code and obtains verification code function

This article example shares the specific code of ...

An example of elegant writing of judgment in JavaScript

Table of contents Preface 1. Monadic Judgment 1.1...

Tutorial on installing MySQL 8.0.11 under Linux

1. Go to the official website to download the ins...

Detailed explanation on how to modify the default port of nginx

First find out where the configuration file is wh...

Docker link realizes container interconnection

Table of contents 1.1. Network access between con...

Detailed tutorial on how to monitor Nginx/Tomcat/MySQL using Zabbix

Table of contents Zabbix monitors Nginx Zabbix mo...

Pay attention to the use of HTML tags in web page creation

HTML has attempted to move away from presentation...

jQuery plugin to implement stacked menu

A jQuery plugin every day - stacked menu, for you...

Summary of some related operations of Linux scheduled tasks

I have searched various major websites and tested...

Why does MySQL database index choose to use B+ tree?

Before further analyzing why MySQL database index...

Use of SerialPort module in Node.js

Table of contents Purpose Module Installation Bas...

Master the CSS property display:flow-root declaration in one article

byzhangxinxu from https://www.zhangxinxu.com/word...