15
複数のインラインスタイルオブジェクトを組み合わせる方法は?
Reactでは、オブジェクトを明確に作成して、インラインスタイルとして割り当てることができます。すなわち。後述します。 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 = {fontSize: '18px'}; React.render(<div style={divStyle}>Hello World!</div>, mountNode); 複数のオブジェクトを結合して一緒に割り当てるにはどうすればよいですか?
213
reactjs