JSFiddle - React, Tailwind, and code Playground
HTML
<h1>This is heading 1</h1>
<p>This is a paragraph.</p>
CSS
body {
background-color: yellow;
}
h1 {
background-color: #00ff00;
}
p {
background-color: rgb(255,0,255);
}
<h1>This is heading 1</h1>
<p>This is a paragraph.</p>
body {
background-color: yellow;
}
h1 {
background-color: #00ff00;
}
p {
background-color: rgb(255,0,255);
}