为了账号安全,请及时绑定邮箱和手机立即绑定
.wrapper > div:nth-of-type(2n-1),
.wrapper > p:nth-of-type(2n){
background: orange;
}
/*或者*/

.wrapper > :nth-child(4n-3),
.wrapper > p:nth-of-type(2n){
background: orange;
}
/*或者*/

.wrapper > div::nth-of-type(odd),
.wrapper > p:nth-of-type(even){
background: orange;
}
:first-child 父元素下面的第一个元素
P:first-of-type 父元素下面类型为P的第一个元素
<style>
a[class^="column"]{background:red;}
a[href$="doc"]{background:green;}
a[title*="box"]{background:blue;}
</style>
::-moz-selection{
background:orange;
color:blue;
}
ul li:only-child,ol li:only-child{
background:orange;
}

最赞回答 / 慕尼黑8233914
详细看这篇文章的解释https://www.cnblogs.com/2050/p/3569509.html
想要获取焦点的话不妨给input等标签写一条focus样式
感觉为input设置enabled后,所有的input都有了这个属性,至于第二个框被禁用,是disabled="disabled"起作用,将
/*input[type="text"]:disabled{*/
/* box-shadow: none;*/
结果还是一样
/*}*/
@import url() all;
有空格的
这个例子比较明显
<style>
:target
{
background-color: #e5eecc;
}
</style>
</head>
<body>
<p><a href="#news1">跳转至内容 1</a></p>
<p><a href="#news2">跳转至内容 2</a></p>

<p>请点击上面的链接,:target 选择器会突出显示当前活动的 HTML 锚。</p>

<p id="news1"><b>内容 1...</b></p>
<p id="news2"><b>内容 2...</b></p>
:root优先级高
:root{
background:green;
}
html{
background:red;
}
看不明白动手操作一下就明白
想知道设置transparent和不设置边框有什么区别。。
挺不错的各种选择器,关键是兼容不太好
div {
width: 300px;
height: 200px;
background: red;
color:#fff;
margin: 20px auto;
animation: changecolor 5s linear infinite .2s ;
}
怎么我加了这句话没有效果呢transtion:all 0.3s;
课程须知
1.html+CSS相关基础知识 2.具有一定的网页制作经验 3.此课程不支持IE9版本以下,建议使用 chrome、safari、firefox、opera浏览器学习本课程。
老师告诉你能学到什么?
1.系统学习CSS3相关知识 2.轻松制作出各种绚丽的效果

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消