JSFiddle - React, Tailwind, and code Playground
by Schepp
CSS
#test {
width: 200px;
height: 0;
}
#test:target {
height: 50px;
background-color: red;
}
JavaScript
$('body').append('<div id="test"/>');
window.location.href = window.location + '#test';
alert($('#test').height());