行间css样式

来源:互联网 发布:最强大脑知乎 编辑:程序博客网 时间:2024/05/16 06:28
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>行间css样式01</title>
</head>
<body>
    <!--
        css样式:
        background 背景
        background-color 背景色
        width 宽 px
        height 高 px
        font-size 字体大小 px
        color 文本颜色
        line-height 行高
        text-indent 首行缩进 px(还有其他单位)
     -->
    <div style="background:yellow;height:200px;"></div>

    <!--
        css行间样式引入:
        缺点:1.违背W3C的编码理念
            2.不利于代码的阅读和修改
        优点:1.极其具有针对性

        该种方法我们以后几乎不用.
    -->

</body>
</html>
0 0
原创粉丝点击