how to write inline 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: javascript style inline react
<div style={{ width: '200px', backgroundColor: 'red' }}>
Example 4: jsx inline css styling
const box = {
textAlign: 'center',
borderStyle: 'double'
};
const text = {
color: '#ff0000',
backgroundColor: '#888888'
};
renderBox() {
return (
<div style={box}> <p style={text}>
This is just a box, no need to worry.
</p> </div>
);
}
renderBox() {
return (
<div style={{textAlign:'center', borderStyle:'double'}}>
<p style={{color:'#ff0000', backgroundColor:'#888888'}}>
This is just a box, no need to worry.
</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 : {}} />