JSFiddle - React, Tailwind, and code Playground
by Lars Holm Jensen
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="staticbar">
</div>
</body>
</html>
CSS
body {
height: 1500px;
}
#staticbar {
position: fixed;
width: 100%;
height: 30px;
background-color: red;
bottom: 0;
}