I want a box that has margin. But position fixed don't seems to contain in my App class?
<div className="App">
<div className="box">
<h1>Hello CodeSandbox</h1>
<h2>Start editing to see some magic happen!</h2>
</div>
</div>
.box {
position: fixed;
background: red;
width: 100%;
box-sizing: border-box;
height: 100%;
}
https://codesandbox.io/s/affectionate-benz-93zp3z?file=/src/App.js
is there any other way to achieve full screen with margin except with fixed?