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

【css】样式、选择器

时间:2016-11-27 16:13:17      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:class   提高   round   样式   覆盖   div   box   lin   ref   

4.了解CSS样式,以及样式的基本运用方式

 首先,有三种引入样式的方法。

其一:内部样式

在<head></head>这个标签里面写<style>所有样式写在这里</style>

其二:外部样式

<link href="具体css文件的路径" rel="sheetstyle">

其三:行内样式    //一般不用这种方式,除非要提高优先级,打算覆盖掉前两种引入样式的方法

例如:<div class="box" style="color:red"></div>

它们仨的优先级:行内样式>内部样式>外部样式

css选择器

标签选择器

h2{color:red;}

类/class选择器

.box{color:red;}

群组选择器 

.box1,.box2,.box3{background:red;}

 

【css】样式、选择器

标签:class   提高   round   样式   覆盖   div   box   lin   ref   

原文地址:http://www.cnblogs.com/shenyanran/p/6106448.html

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