开发者

jQuery Tools Overlay invokes vertical Scrollbar in IE

开发者 https://www.devze.com 2023-02-23 03:50 出处:网络
When i open a JQT Overlay with Internet Explorer 8 the first time, a vertical scrollbar appears in the main window. When i close the overlay and open it again, the scrollbar won\'t appear. How can i a

When i open a JQT Overlay with Internet Explorer 8 the first time, a vertical scrollbar appears in the main window. When i close the overlay and open it again, the scrollbar won't appear. How can i avoid the appearance of the vert开发者_如何学Goical scrollbar when i open the overlay the first time?


The only answer i have found so far to fix this problem in IE8 is to open up your JqueryUI css file, and find the .ui-widget-overlay selector and add the following rule :

position: fixed; 

so effectively:

.ui-widget-overlay  { position: fixed; } 
0

精彩评论

暂无评论...
验证码 换一张
取 消