JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML id</title>
</head>
<body>
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
</body>
</html>
CSS
#one {
background-color: #bada55;
}
#two {
background-color: purple;
}
#three {
background-color: tomato;
}
div {
width: 100px;
height: 100px;
}