JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
span {
color: green;
}
div + span {
color: red;
}
div > span {
color: blue;
}
</style>
</head>
<body>
<div>
<span>Text</span>
</div>
</body>
</html>