JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title></title>
</head>
<body> <p>
Example
</p>
<div class="wrapper"></div>
</body>
</html>
CSS
body {
margin: 0;
min-height: 100vh;
background-color: red;
}
.wrapper {
min-height: 100vh;
background-color: green;
}
p{
font-size: 50px;
text-align: center;
}