最佳答案
CSS properties in React are not automatically added with their vendor prefixes.
For example, with:
<div style={{
transform: 'rotate(90deg)'
}}>Hello World</div>
In Safari, the rotation wouldn't be applied.
How do I get that accomplished?