标签: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.查看运行结果:
标签:style span styles css back ref div size sheet
原文地址:http://www.cnblogs.com/ckl893/p/7402894.html