我在一个窗体中有一个绝对定位的输入框。输入框有透明背景:
.form-page input[type="text"] {
border: none;
background-color: transparent;
/* Other stuff: font-weight, font-size */
}
令人惊讶的是,我不能通过点击它在IE8中选择这个输入框。它在Firefox中工作完美。对于背景也是如此:none。当我更改背景颜色:
background-color: red;
它工作正常,所以这是与透明背景相关的问题。设置边框使输入框可以通过点击边框来选择。
有没有解决方法有可点击输入框与透明背景在IE8工作?
更新:示例。取消注释背景颜色和输入框是可选择的。您还可以单击选择框,然后通过按Shift Tab来聚焦输入框。
input[type="text"] {
border: none;
background: transparent;
/*background-color: blue;*/
}
#elem528 { position:absolute; left:155px; top:164px; width:60px; height:20px; }
#elem529 { position:absolute; left:218px; top:164px; width:40px; height:20px; }