简体   繁体   中英

jQuery UI modal dialog and JSFiddle - how to remove scrollbars?

I have created a simple example of using jQuery UI Dialog

http://jsfiddle.net/RTADa/

<div id="message">
    This is a test
</div>

$(function(){

    $("#message").dialog({modal: true, resizable: false});

});

In IE9, IE10, and Chrome I'm getting vertical and horizontal scrollbars. Is this a bug in jQuery UI or I have to add some additional CSS to remove them?

Thanks!

Set the body overflow hidden

DEMO

body{
   overflow:hidden;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM