inline styling in react for background color code example

Example 1: Setting a background Image With React Inline Styles

backgroundImage: `url(${Background})`

Example 2: inline style jsx

//Multiple inline styles
<div style={{padding:'0px 10px', position: 'fixed'}}>Content</div>

Example 3: react add inline styles in react

// You are actuallty better off using style props
// But you can do it, you have to double brace
// and camel-case the css properties
render() {
	return (
    	<div style={{paddingTop: '2em'}}>
      		<p>Eh up, me duck!</p>
      	</div>
    )
}

Tags:

Css Example