a[class^=column]{
background-color:red;
}
a[href$=doc]{
background-color:green;
}
a[title*=box]{
background-color:blue;
}
background-color:red;
}
a[href$=doc]{
background-color:green;
}
a[title*=box]{
background-color:blue;
}
2017-04-12
background:url(http://static.mukewang.com/static/img/logo_index.png) no-repeat left top/70% 60%,
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom/50% 30%;
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom/50% 30%;
2017-04-12
https://taosang1992.github.io/Javascript-Demo/bluefat.html,改成0.1在线效果
2017-04-12
http://www.zhangxinxu.com/wordpress/2012/09/css3-3d-transform-perspective-animate-transition/
这个老司机我服!
这个老司机我服!
2017-04-12
.wrapper div {
width: 200px;
height: 200px;
line-height: 200px;
background: orange;
text-align: center;
color: #fff;
transition:all 0.5s ease-in;
}
.wrapper div:hover {
opacity: 6;
transform:scale(0.9);
}
设置transition就不会有闪烁了。闪烁很正常。
width: 200px;
height: 200px;
line-height: 200px;
background: orange;
text-align: center;
color: #fff;
transition:all 0.5s ease-in;
}
.wrapper div:hover {
opacity: 6;
transform:scale(0.9);
}
设置transition就不会有闪烁了。闪烁很正常。
2017-04-11
@media (max-width: 480px) {
.wrapper {
min-width: 320px;
width: 98%;
margin-left: 1%;
margin-right: 1%;
}
.left {
float: none;
width: 100%;
}
.content{
float: none;
width: 100%;
}
}
当屏幕小于480时是单列显示
.wrapper {
min-width: 320px;
width: 98%;
margin-left: 1%;
margin-right: 1%;
}
.left {
float: none;
width: 100%;
}
.content{
float: none;
width: 100%;
}
}
当屏幕小于480时是单列显示
2017-04-11