最赞回答 / namnil
分别设置多个背景图的位置。left top将第一个背景图设置为左上角,100px 0将第二个背景图设置为距离所在元素的左100px下0px处,200px 0将第三个背景图设置为距离所在元素的左200px下0px处。
2016-09-16
喜欢一个主播宅妹子,但她转行做前端开发,以后见不到她了,所以我也辞职做前端开发,听说她在慕课学,还成了什么 '慕女神'?,有人没有认识的么??? 认识联系楼下
2016-09-15
涉及到数学,,,,我要不要直接跳过,我的数学很渣啊,反正这个是前面几个方法的另外一种表达方式,不管了,不管了
2016-09-14
<style type="text/css">
[class^="col"]{
background:red;
}
[href$="doc"]{
background:green;
}
[title*="box"]{
background:blue;
}
</style>
[class^="col"]{
background:red;
}
[href$="doc"]{
background:green;
}
[title*="box"]{
background:blue;
}
</style>
2016-09-12
/*制作圆*/
border-radius:6px;
/*制作导航立体风格*/
box-shadow:0px -6px 3px rgba(0,0,0,0.39) inset;
border-radius:6px;
/*制作导航立体风格*/
box-shadow:0px -6px 3px rgba(0,0,0,0.39) inset;
2016-09-12
这个练习太跳跃了吧。。。
/*使用伪元素制作导航列表项分隔线*/
.nav li{
background:linear-gradient(to bottom,white,gray,black) no-repeat right / 1px 15px;
}
/*删除第一项和最后一项导航分隔线*/
.nav li:last-child{
background:none;
}
/*使用伪元素制作导航列表项分隔线*/
.nav li{
background:linear-gradient(to bottom,white,gray,black) no-repeat right / 1px 15px;
}
/*删除第一项和最后一项导航分隔线*/
.nav li:last-child{
background:none;
}
2016-09-12