JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" id="intro">
<span alt="" class="Absolute-Center" id="logo">TEST</span>
</a>
CSS
.Absolute-Center {
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
#logo {
background: url(logo.png) no-repeat center;
background-size: 100%;
height: 25%;
width: 10%;
z-index: 999;
}
JavaScript
$(document).ready(function() {
$("#intro").click(function() {
$(".Absolute-Center").hide();
});
});