JSFiddle - React, Tailwind, and code Playground
by SpiceLab
HTML
<div id="thüringen">Thüringen</div>
CSS
#thüringen {color:blue}
JavaScript
$("#thüringen").on("mouseover", function() {
$(this).css("color", "red");
});
by SpiceLab
<div id="thüringen">Thüringen</div>
#thüringen {color:blue}
$("#thüringen").on("mouseover", function() {
$(this).css("color", "red");
});