html标签的分类

122 阅读1分钟
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <!-- 块元素(1独立成行 2可以设置大小 3宽度自适应其父级大小) -->
    <!-- h1~h6  p  table  tr  lu  li ol form  div -->
    <!-- 行元素(1不独立成行 2不可以设置大小 3宽度由内容决定) -->
    <!-- a  img  td  input -->
</body>
</html>