I’m new to React and currently in the process of building a website, however I cannot get rid of the margin of the body. My css in inside the index.js component and looks like this:
JavaScript
x
8
1
<style jsx>{`
2
body {
3
margin: 0px;
4
padding: 0px;
5
}
6
`}</style>
7
8
Advertisement
Answer
You should use global with jsx style
JavaScript
1
9
1
<div>
2
<style jsx global>{`
3
body {
4
margin: 0px;
5
padding: 0px;
6
}
7
`}</style>
8
</div>
9