JSFiddle - React, Tailwind, and code Playground

HTML

<div class="div1">
    <div class="cross">Testing</div>
</div>

<div class="contnt">
    <a href="#">Query</a>
<input type="button" onclick="submitdata()"/>
</div>

CSS

.div1 {
padding: 35px 11px 15px;
margin-bottom: -12px;
border: 0px none;
}

.cross{
width: 511px;
height: 100%;
background: url(../images/cross01.png) repeat-y;
position: absolute;
top: 0px;
right: 5px;
z-index: 1000;
background-repeat: no-repeat;
background-size: 100% 100%;
}

.contnt{    
position: relative;
    height: 299px;
    width: 267px;
   
}