Answers for "style inside html react"

49

inline style jsx

//Multiple inline styles
<div style={{padding:'0px 10px', position: 'fixed'}}>Content</div>
Posted by: Guest on September-09-2020
2

use style in react

// use inline style in react
const myFunction = () => {
	return (
     <p style={{ fontSize: 24, margin: '0 auto', textAlign: 'center'}}>
       Hello world
    </p>
    );
}
Posted by: Guest on February-18-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language