HTML标签:区块

本章介绍HTML的区块标签, <div> 元素是块级元素,没有特定的含义,它可用于组合其他 HTML 元素的容器。 <span> 元素是内联元素,也没有特定的含义。,可用作文本的容器

<!DOCType html>
<html>
    <head>    
        <meta charset="utf-8">
        <title>块级标签</title>      
    </head>

    <body> 
        <div style="color: chocolate;">
            <h5>标题1</h5>
            <p>···段落···</p>
            <p>我有一只拥有<span style="color: cornflowerblue;">蓝色</span>眼睛的猫</p>
        </div>
    </body>
</html>>

 

猜你喜欢

转载自blog.csdn.net/hppyW/article/details/122637382