JSFiddle - React, Tailwind, and code Playground
by Salehin Modasiya
HTML
<div id="image">
<a href="http://www.facebook.com">
<p id="image-text">
Hello World!</p>
</div>
CSS
#image {
background-image: url('../images/slider.jpg');
background-position: left top;
background-repeat:no-repeat;
cursor: pointer;
margin-right: auto;
margin-left:auto;
max-width: 80%;
height: 500px;
box-shadow: 0px 0px 10px 7px #606060;
}
#image a{display:table-cell;max-height:100%;max-width:100%;height:500px;width:500px;vertical-align:middle;}
#image-text {
color: 000000;
font-size: 24px;
font-weight: bold;
text-align:center;
}