JSFiddle - React, Tailwind, and code Playground

HTML

<div id="show">
    <div id="content">
        Jeg er en notifikation vedrørende brug af cookies på denne side!
        <a href="#show" id="close">Close</a>
    </div>
</div>

CSS

#content {
Text-align: center;
Border: 1px solid green;
Background-color: #ccc;
}
#show:target #content {
    display: none;
}