JSFiddle - React, Tailwind, and code Playground

by David McCormack

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-text {
   
  color: 000000;
  font-size: 24px;
  font-weight: bold;
  text-align:center;
 
}