CSS-字体大小和颜色

one.css

h1,a{
    color: blue;
    front-size:1px;
}

body{
    color: coral;
}

p{
    color: chartreuse;
}

one.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link href="one.css" type="text/css" rel="stylesheet">
</head>
<body>
    <h1>
        应用样式表
    </h1>
    <a>这是a标签</a>
    <h2>这是h3</h2>
    <p>Hello CSS!</p>
</body>
</html>

显示:

猜你喜欢

转载自www.cnblogs.com/OFSHK/p/12761659.html
今日推荐