[Vuejs]-Css3, the variations of "transform: scale()" does not work on any browser apart from Firefox

0👍

scale() takes a <number>, not sure why Firefox accepts percentages here, but for your case, simply do

(this.boxData.scaleOnHover ? 
  `transform: scale(${this.scale / 100});`

Leave a comment