您的位置:首页 > Web前端 > CSS

Css

2016-01-13 11:47 501 查看
<!DOCTYPE html>

<html lang="zh-cn">

<head>

    

    <meta charset="utf-8">

    <title>css</title>

    <link rel="stylesheet" type="text/css" href="css.css">

    <style type="text/css">

    /*p1 {

        color:green;

        font-size: 20px;

    }*/

    p{

        color:blue;

        border: 1px solid blue;

    }

    b{

        border:inherid;

    }

    

    </style>

</head>

<body>

    <!-- <p style="color:red;font-size:20px;">this is a CSS style!</p>

    <p1>this is another css style</p1> -->

    <p>this is the <b>third</b> css test!</p>

</body>
</html>

CSS.CSS

@charset  "utf-8";

p{

    color:blue !important;

    font-size: 50px;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: