分开写的写法:
background-image:url(http://static.mukewang.com/static/img/logo_index.png),
url(http://static.mukewang.com/static/img/logo_index.png);
background-repeat:no-repeat,no-repeat;
background-size:200px 80px,150px 50px;
background-position:0 0,150px 100%;
background-image:url(http://static.mukewang.com/static/img/logo_index.png),
url(http://static.mukewang.com/static/img/logo_index.png);
background-repeat:no-repeat,no-repeat;
background-size:200px 80px,150px 50px;
background-position:0 0,150px 100%;
2017-11-20
.nav li::after{
content: '';
position: absolute; width: 1px; height: 13px; top: 18px; right: 0;
background-image: linear-gradient(to right, rgba(255,255,255,.5), grey);
}
.nav li:last-child::after{
background: none;
}
content: '';
position: absolute; width: 1px; height: 13px; top: 18px; right: 0;
background-image: linear-gradient(to right, rgba(255,255,255,.5), grey);
}
.nav li:last-child::after{
background: none;
}
2017-11-19
最新回答 / 御就要留意
ease是开始慢 中间快 结尾慢 ease-out 是开始和中间都快 结尾慢
百度过来的,
伪元素由双冒号和伪元素名称组成。双冒号是在当前规范中引入的,用于区分伪类和伪元素。不过浏览器需要同时支持旧的已经存 在的伪元素写法,比如:first-line、:first-letter、:before、:after等,而新的在CSS3中引入的伪元素则不允许再支持旧的单冒号的写法。 对于CSS2之前已有的伪元素,比如:before,单冒号和双冒号的写法::before作用是一样的。所以,如果你的网站只需要兼容webkit、firefox、opera等浏览器,建议对于伪元素采用双冒号的写法,如果不得不兼容IE浏览器,还是用CSS2的单冒号写法比较安全。
伪元素由双冒号和伪元素名称组成。双冒号是在当前规范中引入的,用于区分伪类和伪元素。不过浏览器需要同时支持旧的已经存 在的伪元素写法,比如:first-line、:first-letter、:before、:after等,而新的在CSS3中引入的伪元素则不允许再支持旧的单冒号的写法。 对于CSS2之前已有的伪元素,比如:before,单冒号和双冒号的写法::before作用是一样的。所以,如果你的网站只需要兼容webkit、firefox、opera等浏览器,建议对于伪元素采用双冒号的写法,如果不得不兼容IE浏览器,还是用CSS2的单冒号写法比较安全。
2017-11-15