JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div {background-color:red;}
.select {background-color:green !important}
#select {background-color:blue;}
</style>
</head>
<body>
<div class="select" id="select" style="background-color:pink">Color</div>
</body>
</html>