I have a html like this
<div class="div1">
<div class="cross">
</div>
<div class="contnt">
<input type="button" onclick="submitdata()"/>
</div>
the div1 have the css like
.div1 {
padding: 35px 11px 15px;
margin-bottom: -12px;
border: 0px none;
}
and the div cross have
.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%;
}
and the div contnt have
.contnt{
position: relative;
height: 299px;
width: 267px;
}
The problem is I can't Click the button in div contnt.the hyper link,button and anything in the div contnt is not working.anyone know what is the problem.any suggestion ?