What mind is behind this prioritize of CSS3 cross browser?
for example:
.box_scale {
-webkit-transform: scale(0.8); /* Chrome, Safari 3.1+ */
-moz-transform: scale(0.8); /* Firefox 3.5+ */
-ms-transform: scale(0.8); /* IE 9 */
-o-transform: scale(0.8); /* Opera 10.50-12.00 */
transform: scale(0.8); /* Firefox 16+, IE 10+, Opera 12.10+ */
}
first is -webkit-
, second is -moz-
, third is -ms-
forth is -o-
and at the end without any prefix. what is the point of this prioritize ? or this is not matter which one is first?