bootsrap移动页面背景颜色

时间:2015-07-04 01:35:22

标签: 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">
       <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>

1 个答案:

答案 0 :(得分:0)

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

body {
background-color: white !important;
}

CSS Background Property