简述CSS样式存放在网页中的两种方式及CSS样式的选择器类型包括哪几种
简述CSS样式存放在网页中的两种方式及CSS样式的选择器类型包括哪几种
日期:2017-06-27 17:00:56 人气:1
外部:在head内加
内部:在head内加css代码
内联:在标签内加style,如
链接
class 选择器 .inner{ width:100px;}
id 选择器 #demo{ width:100px;}
标签 选择器 p{ width:100px;}
后代选择器 p a{ color: #f60;}
伪类选择器 a:hover{ color: #f00;}
伪元素选择器 a:after{ clear: both;}
属性选择器 input[type=ch