background-position:left top , right bottom ;
background-size:180px 70px,150px 60px;
background-size:180px 70px,150px 60px;
2016-12-14
我感觉translates里面直接写后面三个属性值就好了也能触发的 因为hover里已经写了要变化的属性
2016-12-14
确实一起讲解的话可以更容易理解一点,不会这么懵逼,理解了就觉得很不错
2016-12-14
<style>
a[class^=column]{
background:red;
color:#000;
}
a[href$=doc]{
background:green;
color:#000;
}
a[title*=box]{
background:blue;
color:#000;
}
</style>
a[class^=column]{
background:red;
color:#000;
}
a[href$=doc]{
background:green;
color:#000;
}
a[title*=box]{
background:blue;
color:#000;
}
</style>
2016-12-14