css
层叠样式表
主要功能
1.布局定位
2.美化页面
注释:/* */
按书写的位置分为三大类
1.内嵌样式表
<html>
<head>
..............
</head>
<body>
</body>
</html>
<style type="text/css">
li{color: red;}
</style>
2.外部样式表(用的比较多)
单独写在文件中,文件.css : p{color: blue;}
关联方法1(链接外部样式表):
<link rel="stylesheet" href="css/style.css" type="text/css"/>
关联方法2(导入外部样式表):
<style type="text/css">
@import url("css/style.css");
</style>
3.行内样式表
<p style=""></p>
<div style="width: 400px;height: 200px;border: 1px solid red;">hello div</div>
选择器
1.简单选择器
语法:
选择器{属性:属性值;属性:属性值;…}
1.1.标签选择器
li{color:red;}
1.2.类选择器
.redtext{color: red;}
<li class="redtext">xxx</li>
当在一个class设置两个类,两个类是同一个属性时,以后出现的为准
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.p{color: red;}
.p2{color: blue;}
</style>
</head>
<body>
<p class="p p2">bbbbbbbbbbbbbbbbb</p>
</body>
1.3.id选择器
#myli{color: green;}