Question #205

Author: admin
tags: CSS   frontend (web)  
<div class="block"></div>
.block {
  border: 1px solid black;
  width: 100px;
  height: 100px;
  transform: scaleX(0.5) rotate(45deg) translateX(150px);
}
In what order will transform functions be applied to the block?
scaleX(), rotate(), translateX() - in the order in which they are written
translateX(), scaleX(), rotate()
rotate(), translateX(), scaleX()
Rate the difficulty of the question:
easyhard