15
Como combinar vários objetos de estilo embutido?
No React, você pode criar claramente um objeto e atribuí-lo como um estilo embutido. ie mencionado abaixo. var divStyle = { color: 'white', backgroundImage: 'url(' + imgUrl + ')', WebkitTransition: 'all', // note the capital 'W' here msTransition: 'all' // 'ms' is the only lowercase vendor prefix }; var divStyle2 …
213
reactjs