标签: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;}
标签:class 提高 round 样式 覆盖 div box lin ref
原文地址:http://www.cnblogs.com/shenyanran/p/6106448.html