Fixed a bug
April 24th, 2005
Today while reading this post on slashdot I figured out why in IE the body section of my site wouldn’t resize correctly. The main body section is supposed to be around 975 pixels to make the links on the left side of the page look correct. Well apparently IE doesn’t know how to handle the min-height property if its not related to a table, so for IE instead of min-height: 975px; in my style sheet, I needed to add _height: 975px; in the correct spot. If any browser but IE accesses my page, it’ll ignore the _height property and use the proper min-height property. If IE accesses the page it will parse the _height property instead of the min-height property. Long story short, the links section displays correctly in firefox and IE. Anway, IE7 should support png’s properly now and hopefully be more css complient to make life easier for web designers. Later.
Leave a Reply