calendarxp Site Admin
Joined: 30 Jan 2005 Posts: 409
|
Posted: Tue Feb 15, 2005 7:08 pm Post subject: Why is the calendar mis-aligned in ASP.NET tab-control containing relatively-positioned tags in a html table? |
|
|
It's a CSS bug of IE6 only, and doesn't exist in earlier versions of IE. To work around, you just need to give the tab tag that contains the date field a style of at least 1px padding. e.g. If the tab tag is a <div> tag, you'll need the following css class definition in your page.
Code: | <style>
div {padding:1px}
</style> |
_________________ Copyright 2003-2011 Idemfactor Solutions, Inc. All rights reserved. |
|