JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div {
height: 100px;
color: white;
}
.relative {
background-color: blue;
position: relative;
}
.absolute {
background-color: green;
position: absolute;
top: 0;
right: 0;
}
</style>
</head>
<body>
<div class="relative">
Relative
<div class="absolute">
Absolute
</div>
</div>
</body>
</html>