JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<title>space foo</title>
<meta charset=utf-8>
<style>
#\ foo{background:#f00;}
#\ oof{background:#00f;}
:target{border:1px dashed #000;color:#fff}
</style>
</head>
<body>
<p id=" foo">your mother is a hamster</p>
<p id=" oof">and your father etc</p>
<p><a href="#%20foo">first</a></p>
<p><a href="#%20oof">second</a></p>
<script>
document.write('<p>"' + document.getElementById(' foo').id + '"</p>');
</script>
</body>
</html>