首页 > 代码库 > CSS选择器
CSS选择器
元素选择器 也是类型选择器 html {color:black;} h1 {color:blue;} h2 {color:silver;}
选择器分组 h2, p {color:gray;}
通配符选择器 * {color:red;}
CSS 类选择器 <h1 class="important">his heading is very important.</h1> <p class="important">This paragraph is very important.</p>
.important {color:red;}
ID选择器 #intro {font-weight:bold;}
属性选择器 *[title] {color:red;}
后代选择器 h1 em {color:red;} h1下面所有的em 无论多深
子元素选择器 h1 > strong {color:red;} h1下一层的strong
相邻兄弟选择器 h1 + p {margin-top:50px;} 必须有同一个父节点
锚伪类 a:link {color: #FF0000} /* 未访问的链接 */ a:visited {color: #00FF00} /* 已访问的链接 */ a:hover {color: #FF00FF} /* 鼠标移动到链接上 */ a:active {color: #0000FF} /* 选定的链接 */
p:first-child {font-weight: bold;} p下面的第一个类
伪元素 p:first-letter{ font-size:xx-large;}
CSS选择器
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。