how to add css styles in react code example
Example 1: inline style jsx
<div style={{padding:'0px 10px', position: 'fixed'}}>Content</div>
Example 2: 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 3: react add inline styles in react
render() {
return (
<div style={{paddingTop: '2em'}}>
<p>Eh up, me duck!</p>
</div>
)
}
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: React include css
import "./FileName.css";