博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css 属性选择器笔记
阅读量:6251 次
发布时间:2019-06-22

本文共 1711 字,大约阅读时间需要 5 分钟。

1、基本选择器:

 

eg:

*{
margin:0;padding:0}p{
color:black}.content{
background:red;}#intro{
padding-left:2em;}

 

2、多元素组合选择器

 

 

div p {
color:#f00; }#nav li {
display:inline; }#nav a {
font-weight:bold; }div > strong {
color:#f00; }h2 + p {
color:#f00; }

 

三、CSS 2.1 属性选择器

eg:

p[title] {
color:#f00; }div[class=error] {
color:#f00; }td[headers~=col1] {
color:#f00; }p[lang|=en] {
color:#f00; }blockquote[class=quote][cite] {
color:#f00; }

四、CSS 2.1中的伪类

eg

p:first-child {
font-style:italic; }input[type=text]:focus {
color:#000; background:#ffe; }input[type=text]:focus:hover {
background:#fff; }q:lang(sv) {
quotes: "\201D" "\201D" "\2019" "\2019"; }

五、 CSS 2.1中的伪元素

eg:

p:first-line {
font-weight:bold; color;#600; }.preamble:first-letter {
font-size:1.5em; font-weight:bold; }.cbb:before {
content:""; display:block; height:17px; width:18px; }background:url(top.png) no-repeat 0 0; margin:0 0 0 -18px; }a:link:after {
content: " (" attr(href) ") "; }

 

六、CSS 3的同级元素通用选择器

eg:

p ~ ul {
background:#ff0; }

 

七、CSS 3 属性选择器

eg:

div[id^="nav"] {
background:#ff0; }

 

八、CSS 3中与用户界面有关的伪类

 

 

input[type="text"]:disabled {
background:#ddd; }

 

九、CSS 3中的结构性伪类

 eg

p:nth-child(3) {
color:#f00; }p:nth-child(odd) {
color:#f00; }p:nth-child(even) {
color:#f00; }p:nth-child(3n+0) {
color:#f00; }p:nth-child(3n) {
color:#f00; }tr:nth-child(2n+11) {
background:#ff0; }tr:nth-last-child(2) {
background:#ff0; }p:last-child {
background:#ff0; }p:only-child {
background:#ff0; }p:empty {
background:#ff0; }

 

十、CSS 3的反选伪类

 

十一、CSS 3中的 :target 伪类

 

转自

 

在写css属性选择器时注意特殊性的值得权重

 

转载于:https://www.cnblogs.com/feilu2016/p/7115988.html

你可能感兴趣的文章
SSM(Spring,SpringMVC,MyBatis)用户登录
查看>>
关于SQL注入,你应该知道的那些事
查看>>
jquery bxslider幻灯片样式改造
查看>>
常用JavaScript操作页面元素的方法
查看>>
学习进度条 12/18 到12/23
查看>>
varnish学习以及CDN的原理
查看>>
服务器配置 隐藏apache和php的版本
查看>>
将数据表中的数据导出到Excel、将Excel中的数据导入到数据表
查看>>
数据恢复系列(1)~恢复方案制定
查看>>
ASCII码值表
查看>>
关于Python中继承的格式总结
查看>>
2019年目标
查看>>
[SDOI2017]数字表格【莫比乌斯反演】
查看>>
每日一句(11)
查看>>
搭建nexus3版的maven私服(Centos7环境)
查看>>
[TJOI2017]可乐
查看>>
网易云信案例简析:锤科情怀缩影,子弹短信路在何方?
查看>>
c#-SimHash匹配相似-算法
查看>>
字符复习
查看>>
Linux系统挂载ntfs分区
查看>>