今天我们进入了css的学习,css称层叠样式,被定义为HTML元素的显示元素,是一种格
式化网页内容的技术,可以美化网页提高页面浏览速度。
css样式分为三种:内联、内部、外联
内联(在开始标签定义): <h1 style="color:red"></h1>
内部:嵌入式(在网页head部分):<style type="text/css">
.class{'color':red}
</style>
外联(写在css页面里面):<link rel="stylesheet" type="text/css" href="外联">
选择器分类:
元素选择器 任何标签都可定义为 h,p,div,span
类选择器 class (id name) .p{}
ID选择器 #p{}
通配选择器 *{}
属性 title,target
伪类(伪元素)first-line, first-letter h1:hover{}
权重值
内联 style=“” 权值为1000 最大
ID选择器
伪类 #content, 权值为0010
元素选择器 div,p 权值为0001
长度单位
绝对长度:cm厘米,mm毫米,pt点
相对长度:em倍(响应式,移动端),px像素(最常用)
常用样式
body{
}
来源:https://www.cnblogs.com/hlicns/p/5172054.html