建议大家把源码下载下来,再将那些为了兼容性写的代码全部删除。这样看源码比较简单,再对照着任务提示观看源码,基本就可以把远离弄懂,最后自己再上手一遍,基本就会了。
2017-02-17
最赞回答 / 好吃的蛋包饭
+号是相邻兄弟选择器的结合符,选择紧接在另一个元素后的元素,而且二者有相同的父元素。比如这个选择的是type="radio"的input标签被选中时,后面紧跟的span标签。也就是改变的是这个span标签的样式
2017-02-16
比百分比更加直观
background:url(http://static.mukewang.com/static/img/logo_index.png) no-repeat left top /230px 80px,
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom /150px 40px;
background:url(http://static.mukewang.com/static/img/logo_index.png) no-repeat left top /230px 80px,
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom /150px 40px;
2017-02-16
3D球的话这样不是更逼真吗
width: 100px;
height: 100px;
box-shadow: 19px 20px 8px 0px #666, -11px -13px 50px 10px #888 inset;
border-radius: 50px;
width: 100px;
height: 100px;
box-shadow: 19px 20px 8px 0px #666, -11px -13px 50px 10px #888 inset;
border-radius: 50px;
2017-02-16
注意:
用逗号隔开每组 background 的缩写值;
如果有 size 值,需要紧跟 position 并且用 "/" 隔开;
如果有多个背景图片,而其他属性只有一个(例如 background-repeat 只有一个),表明所有背景图片应用该属性值。
background-color 只能设置一个。
用逗号隔开每组 background 的缩写值;
如果有 size 值,需要紧跟 position 并且用 "/" 隔开;
如果有多个背景图片,而其他属性只有一个(例如 background-repeat 只有一个),表明所有背景图片应用该属性值。
background-color 只能设置一个。
2017-02-15
已采纳回答 / 懵萌酱
在CSS样式里面写@font-face{ font-family:my font(自己取) src:字体路径}后面设置字体时要和你自己取的字体名称相同,如p{font-family:my font}
2017-02-14
3、4正确答案
/*伪元素列表项分隔线*/
.nav li:after{
content:'';
position:absolute;
width:1px;height:10px;
background:linear-gradient(to bottom,#dd2926,#a82824,#dd2926);
right:0px;
top:50%;
margin-top:-5px;
}
/*删除最后一项*/
.nav li:last-child:after{content:none;}
/*伪元素列表项分隔线*/
.nav li:after{
content:'';
position:absolute;
width:1px;height:10px;
background:linear-gradient(to bottom,#dd2926,#a82824,#dd2926);
right:0px;
top:50%;
margin-top:-5px;
}
/*删除最后一项*/
.nav li:last-child:after{content:none;}
2017-02-13
正确答案
/*分隔线*/
.nav li:after{
content:'';
position:absolute;
width:1px;height:10px;
background:linear-gradient(to bottom,#dd2926,#a8282,#dd2926);
right:0px;
top:50%;
margin-top:-5px;
}
删除第一项和最后一项导航分隔线
.nav li:last-child:after{content:none;}
/*分隔线*/
.nav li:after{
content:'';
position:absolute;
width:1px;height:10px;
background:linear-gradient(to bottom,#dd2926,#a8282,#dd2926);
right:0px;
top:50%;
margin-top:-5px;
}
删除第一项和最后一项导航分隔线
.nav li:last-child:after{content:none;}
2017-02-13