Christian Heilmann wrote:
> I am experiencing a weird issue with hovers on MSIE. If you go to:
> 
> http://icant.co.uk/works/wickstead/extensions.php
> 
> or
> 
> http://icant.co.uk/works/wickstead/
> 
> and you hover over the links on the right or the bottom respectively,
> MSIE does increase the height of the main container. 

Looks like something spurious is dropping ...

Its a tight float setting. Reducing the width of the right side seems to 
fix it at my end.

#specials {
   /* padding: 10px; */
   padding: 10px 10px 10px 6px;
   width: 130px;
   float: left;
   }

or

#specials {
   padding: 10px;
   margin-right: -4px;

   width: 130px;
   float: left;
   }

Ingo

-- 
http://www.satzansatz.de/css.html


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to