I have the following problem specifically in IE.
I have a basic html with an input control and a div.
The div overlaps the input control using position:absolute.
In essence covering the input control. In IE the cursor can still be seen blinking through the div element.
HEre is my simple test code:
Can I make the cursor hide? Remember this is specifically IE behaviour.
Thanks for any help in advance.
Weedz
Weedz (Edward W.F. Veld)
I have a basic html with an input control and a div.
The div overlaps the input control using position:absolute.
In essence covering the input control. In IE the cursor can still be seen blinking through the div element.
HEre is my simple test code:
Code:
<html>
<body>
<input type="text" size="50" length="50">
<div style="position:absolute;top:10pt;left:10pt;background-color:red;width:100px;height:100px">
</body>
</html>
Can I make the cursor hide? Remember this is specifically IE behaviour.
Thanks for any help in advance.
Weedz
Weedz (Edward W.F. Veld)