html5-样式的三种方式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>样式的三种方式</title>
    <link rel="stylesheet" type="text/css" href="">
    <style type="text/css">
p{color: red;font-size: 14px;background: steelblue;}
    </style>

</head>
<body style="background: #f0f0f0">
    <p style="color: red">
        样式基础
    </p>
    <p>内部样式</p>
    <p>内部样式</p>
    <p>内部样式</p>
    <p>内部样式</p>
    <p>内部样式</p>
    <p>内部样式</p>
</body>
</html>

上一篇:最大熵的Java实现


下一篇:sass 的安装 http://blog.csdn.net/weixin_38362146/article/details/78035971?locationNum=10&fps=1