react styles inline css color code example
Example 1: inline style 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>
)
}
Example 2: inline styling in react
render() {
return (
<p style={{color: 'red'}}>
Example Text
</p>
);
}