JSFiddle - React, Tailwind, and code Playground

by artemhp

HTML

<!DOCTYPE html>
<html>
<head>
<title>Тест</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
<style type="text/css"> 
body {
   position: relative;
   margin:0; padding:0;
   background:grey;
}
.test {
   position: absolute;
   top: 200px;
   bottom: 100px;
   background:yellow;
   width:100%;
   height:100%;
}
</style> 
</head>
<body>
<div>
    header
</div>
<div class="test">        
     <p>Текст</p>
</div>
</body>
</html>