最新回答 / 慕莱坞3651639
谢谢,我后来明白了,我那个是连写的方式,只是感觉上,有两个时间,有点怪怪的。不知你是否也这样觉得。
已采纳回答 / 闹小志
用rgba来添加透明度,例如:background-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.2) 100%);
最新回答 / kingdom9
-webkit-animation:cate 1s infinite linear;//这里引入了动画,注释动画就不会运行了@-webkit-keyframes catea{} //这里定义了动画,其中-webkit-指谷歌内核,其他的对应相应的浏览器
2015-12-02
缩写: background:url(http://static.mukewang.com/static/img/logo_index.png) no-repeat left top/200px 65px,
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom /150px 34%;
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom /150px 34%;
2015-12-01
一般写法:
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;
background-position:left top,right bottom;
background-size:200px 60%,150px 34%;
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;
background-position:left top,right bottom;
background-size:200px 60%,150px 34%;
2015-12-01
background-clip 用于剪裁背景,content-box 剪裁 内容以外的,padding-box 剪裁 padding以外的,
2015-12-01