Forum Moderators: not2easy
In some html input fields (text and checkbox) I cannot access with the mouse with click, only can access with TAB key, very strange.
The div is:
<div id="censos" style="visibility:hidden; position:absolute;background-color:white;left:10px;top:90px;width:790px;">
<%@ include file="censo.jsp" %>
</div>
and in censo.jsp I have the html fields, for example:
<input type=text name="campo1"/>
Please help me, best regards!
Diego
However, I had a similar problem once and it ended up being that my absolutely positioned item was being covered up by the margin of another item on the page. The solution was to give the absolutely positioned item a higher z-index to make sure it was "on top" of the margin. Try adding:
z-index: 500;
and see if that fixes it.