Twitter bootstrap 引导移动页面背景色

Twitter bootstrap 引导移动页面背景色,twitter-bootstrap,background-color,Twitter Bootstrap,Background Color,当我在移动设备上查看以下页面时,它的背景为黑色。web浏览器上的背景色为白色。如何使手机和网络背景相同 <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <scr

当我在移动设备上查看以下页面时,它的背景为黑色。web浏览器上的背景色为白色。如何使手机和网络背景相同

    <!DOCTYPE html>
    <html lang="en">
    <head>

       <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
       <script   src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
       <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
    </head>
    <body>
       <h1>Hello, world!</h1>
    </body>
</html>

将背景色添加到CSS中的body元素

body {
background-color: white !important;
}

删除样式表。