JSFiddle - React, Tailwind, and code Playground
by Dominik Wilk
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id="kontener">
<p id="identyfikator">Treść</p>
</div>
</body>
</html>
SCSS
div#kontener {
p#identyfikator{
color: red
}
}
p#identyfikator {
color: green
}
p {
color: black
}