How can I ensure that the main content stays on the right side of the sidebar without adding margin-right?
Currently, the sidebar is being covered by the body content due to its fixed position. Is there a solution to prevent this issue?
.App {
display: flex;
}
.s {
position: fixed;
}
<div class="App">
<div class='s'>sidebar</div>
<div class='m'>
<p>data</p>
<p>data</p>
<p>data</p>
...
<p>data</p>
</div>
</div>