JSFiddle - React, Tailwind, and code Playground
by Doeke Wartena
HTML
<body>
<div id="container">
<div id="thesis_plain">
<p>djsfjdshfsd
sdfdsfs
dfsfdsf
dsfsd</p>
<div id="control_panel">dsjahsdjashdasjdhsajadhdajshdajsdhasdjhasjh</div>
</div>
</body>
CSS
body {
margin: 0;
padding: 0;
border: 0;
font-family: Verdana;
}
#container {
overflow: hidden;
}
#thesis_plain {
margin-top: 40px;
margin-left: 40px;
margin-right: 40px;
margin-bottom: 40px;
height: 2000px;
}
#control_panel {
position: fixed;
bottom: 0;
width: 100%;
height: 100px;
background-color: red;
}