<style type="text/css">
:root{background:orange;}
</style>
:root{background:orange;}
</style>
2015-02-03
<style type="text/css">
a[class^="column"]{
background:red;
}
a[href$="doc"]{
background:green;
}
a[title*="o"]{
background:blue;
}
</style>
不要忘记开头和结尾的 <style type="text/css"></style>
a[class^="column"]{
background:red;
}
a[href$="doc"]{
background:green;
}
a[title*="o"]{
background:blue;
}
</style>
不要忘记开头和结尾的 <style type="text/css"></style>
2015-02-03
-webkit-column-count:2;
-moz-column-count:2;
-o-column-count:2;
-ms-column-count:2;
column-count:2;
-moz-column-count:2;
-o-column-count:2;
-ms-column-count:2;
column-count:2;
2015-02-03
.wrapper div:hover {
opacity: .5;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
transform: scale(0.8);
}
没变化,哪里错了?
opacity: .5;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
transform: scale(0.8);
}
没变化,哪里错了?
2015-02-03