JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div {
background-color: orange;
}
span {
background-color: red;
height: 1000px;
width: 10000px;
}
</style>
</head>
<body>
<div>Zauzimam cijeli prostor</div>
<span>
Velik sam kao i moj sadrzaj.
</span>
</body>
</html>