我有一个这样的html
<div class="div1">
<div class="cross">
</div>
<div class="contnt">
<input type="button" onclick="submitdata()"/>
</div>
div1 有类似的 css
.div1 {
padding: 35px 11px 15px;
margin-bottom: -12px;
border: 0px none;
}
和 div 交叉有
.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%;
}
和 div 内容有
.contnt{
position: relative;
height: 299px;
width: 267px;
}
问题是我无法单击 div contnt 中的按钮。超链接、按钮和 div contnt 中的任何内容都不起作用。任何人都知道问题是什么。有什么建议吗?