码迷,mamicode.com
首页 > Web开发 > 详细

第十一 css 说明

时间:2017-08-21 10:29:46      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   span   styles   css   back   ref   div   size   sheet   

一、css三种引用方式

1.1.引用方式说明

第一、写在div里面,直接引用

 <div style="color: aqua;font-size: 32px">forever</div>

第二、卸载head里面,全局引用

    <style>
        .cc {
            color: red;
            font-size: 22px;
        }
    </style>

第三、写到文件里面导入引用

common.css

.kk{
    color: yellow;
    font-size: 38px;
}

head 里面引入

<link rel="stylesheet" href="common.css" />

2.示例说明

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>XieSha</title>
    <link rel="stylesheet" href="common.css" />
    <style>
        .cc {
            color: red;
            font-size: 22px;
        }
    </style>
</head>
<body>
    <div style="color: aqua;font-size: 32px">forever</div>
    <div class="kk">HONDA</div>
    <div class="cc">young</div>
</body>
</html>

common.css

.kk{
    color: yellow;
    font-size: 38px;
}

3.查看运行结果:

技术分享

 

第十一 css 说明

标签:style   span   styles   css   back   ref   div   size   sheet   

原文地址:http://www.cnblogs.com/ckl893/p/7402894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!