Two questions please, as I'm new to CSS3:
1) I understand that -XXX-transtion: opacity .4s below says to Webkit and Firefox browsers: change opacity to zero over the course of 400ms. But what does the comma right afterwards mean?
opacity: 0;
-webkit-transition: opacity .4s, -webkit-transform .4s;
-moz-transition: opacity .4s, -moz-transform .4s;
2) Given the mixins.less file below, how to rewrite the above statements?
.transform(@transform) {
-webkit-transform: @transform;
-moz-transform: @transform;
-ms-transform: @transform;
-o-transform: @transform;
transform: @transform;
}
.transition(@transition) {
-webkit-transition: @transition;
-moz-transition: @transition;
-ms-transition: @transition;
-o-transition: @transition;
transition: @transition;
}