styles jsx 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: use styles in react
const useStyles = makeStyles(theme => ({
textField: {
marginLeft: theme.spacing(1),
marginRight: theme.spacing(1),
border: '1px solid red',
},
}));
function App() {
const classes = useStyles();
return (
<TextField
id="outlined-name"
label="Name"
className={classes.textField}
margin="normal"
variant="outlined"
/>
);
}
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>
);
}