The Artima Developer Community
Sponsored Link

Agile Buzz Forum
The bugs you find in IE...

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
James Robertson

Posts: 29924
Nickname: jarober61
Registered: Jun, 2003

David Buck, Smalltalker at large
The bugs you find in IE... Posted: Jul 5, 2005 11:45 PM
Reply to this message Reply

This post originated from an RSS feed registered with Agile Buzz by James Robertson.
Original Post: The bugs you find in IE...
Feed Title: Michael Lucas-Smith
Feed URL: http://www.michaellucassmith.com/site.atom
Feed Description: Smalltalk and my misinterpretations of life
Latest Agile Buzz Posts
Latest Agile Buzz Posts by James Robertson
Latest Posts From Michael Lucas-Smith

Advertisement

Today at work we were dealing with Javascript that popped up a Calender widget. For some reason, on one particular page the calender would appear underneath some of the other widgets on the page.

It turns out that any absolute div in IE that is meant to be on top of a drop down list will have the drop down list on top of the absolute. Note: text input fields, multiline text input fields, etc, do -not- appear on top of the absolute. This is correct behaviour. Why the drop down list feels it should be on top is beyond me.

The following html did it for me:

<html>
<body>
	<div style="position: absolute; background-color: blue; width: 100px; height: 100px">This is a test</div>
	<select name="foo"></select>
</body>
</html> 

Read: The bugs you find in IE...

Topic: Microsoft in Australia, me in USA Previous Topic   Next Topic Topic: .NET in trouble?

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use