add style in react code example
Example 1: inline style jsx
<div style={{padding:'0px 10px', position: 'fixed'}}>Content</div>
Example 2: inline style react
render() {
return (
<div style={{paddingTop: '2em'}}>
<p>Eh up, me duck!</p>
</div>
)
}
Example 3: react div style
return <div style={{display: 'inline-block'}}>
Example 4: Styling React Using CSS
class MyHeader extends React.Component {
render() {
return (
<div>
<h1 style={{color: "red"}}>Hello Style!</h1>
<p>Add a little style!</p>
</div>
);
}
}
Example 5: inline style react
<ul className="todo-list">
{this.state.items.map((item,i)=>({
<li
className={classnames({ 'todo-list__item': true, 'is-complete': item.complete })}>
{item.name}
</li>
})}
</ul>
<li className='todo-list__item'
style={(item.complete) ? styles.complete : {}} />