react style component code example

Example 1: styled componets npm

npm i styled-components

Example 2: styled-components

npm install --save styled-components

# yarn 
yarn add styled-components

Example 3: inline style jsx

//Multiple inline styles
<div style={{padding:'0px 10px', position: 'fixed'}}>Content</div>

Example 4: 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 5: react div style

return <div style={{display: 'inline-block'}}>

Example 6: 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>
    );
  }
}