do the H5 page and transform the elements. If transform has multiple attribute values, adjust their order, and the rendering results are inconsistent. For example:
transform: scale(2) translate(100px,0px);
transform: translate(100px,0px) scale(2);
another example:
transform:rotate(30deg) skew(30deg,0deg);
transform:skew(30deg,0deg) rotate(30deg);
the code above looks exactly the same, and the rendering results are not consistent. As shown in the figure
online test address:
https://codepen.io/quiettroja.