The Cursor in an input flickers with IE7 when the page has an animated gif on it.
Take away the gif, and the problem goes away.
Edit (again): What I really need is somebody who knows the answer to a bizarre ie bug.
I'm a 10 year experienced web app developer. Trust me, I know how to debug -- for instance, knowing for a fact that the animated gif is the reason for the screen draw is the result of a successful debug. Fixing that is another matter.
Edit (again, again), using my gif, and the code from answer three below.
<html>
<head>
<style type="text/css">
#img {
position: absolute;
}
#dv {
background-color: transparent;
border: 1px solid Black;
height: 450px;
position: absolute;
width: 600px;
}
#frm {
left: 170px;
position: absolute;
top: 100px;
}
</style>
</head>
<body>
<img src="http://www.johnherr.net/skeleton.gif" id="img">
<div id="dv">
</div>
<form id="frm">
<input type="text">
</form>
</body>
</html>