React style compatible writing

how can react be browser compatible when styling the style attribute? For example,

<div style={{transform:translateX(100%)}}/>

if you write to a css file, postcss-loader can be prefixed with compatibility.
Test: manually write full style compatible prefixes, such as adding WebkitTransition and msTransition, but observing the actual rendering elements, react seems to automatically remove the compatible prefix, leaving only the transform attribute.
guess: will react automatically handle style compatibility? We only use the standard way of writing?

Mar.31,2021
Menu