JSFiddle - React, Tailwind, and code Playground

HTML

<div id="sidebar">
		<!--<img src="images/diced_200.jpg" style="border:solid 1px black;"></img>-->
		<div id="navi">
			<ul>
				<li>Startseite</li>
				<li>Showcase</li>
				<li>Über uns</li>
				<li>Impressum</li>
			</ul>
		</div>
	</div>
	<div id="content">
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p>
		<p>Scroll</p><p>Scroll</p>
		<p>Scroll</p><p>Scroll</p>
		<p>Scroll</p>
		
	</div>

CSS

body, html {
	width:100%;
	height:100%;
	margin:0px;
	padding:0px;
}

div#sidebar{
	position:fixed;
	height:100%;
	/*margin-top:10px;*/
}

div#navi{
	width:200px;
	height:100%;
	background-color:lightgrey;
	/*margin-top:200px;*/
}

div#content{
	width:auto;
	margin-left:200px;
	height:auto;
	background-color:red;
	/*margin-top:-20px;*/
	
}