Opera Transform Issues
Couple issues with Opera’s current implementation of CSS transforms. I’m looking at this with version 10.62
- Re-renders texts with poor anti-aliasing
- A space in the value of transform functions will be thrown. So
scale( 0.5)
will not work, butscale(0.5)
will. This goes for any transform function,translate()
,rotate()
, etc.
Live example:
-o-transform: translate( 20px, 10px)
Value function has leading space. Transform will not be recognized. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
-o-transform: translate(20px, 10px)
No leading space. Transform re-renders text with poor anti-aliasing. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.