javascript - 页眉没有填满整个页面?

标签 javascript html css

我的页眉设置为 100% 的宽度,但页面左侧有一个很大的间隙,尽管页面右侧没有。有什么想法吗?

这是我的代码:

HTML:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>GS4 Concept Home Page</title>
<link type="text/css" href="unicss.css" rel="stylesheet"/>
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<script src="Script/jquery.js"></script>
<script src="Script/main.js"></script>
</head>

<body>
    <div id="header">
    <div class="nav">
        <ul class="navigation">
                <li><a href="#">Home</a></li>
                <li><a href="#">Galaxy S4</a>
                <ul>
                    <li><a href="#">Verizon</a></li>
                    <li><a href="#">ATT</a></li>
                    <li><a href="#">Sprint</a></li>
                    <li><a href="#">T-Mobile</a></li>
                    <li><a href="#">International</a></li>
                </ul>
                </li>

        </ul>
    </div>
</div>
    <div id="container">

    </div>

</body>
</html>

CSS:

@charset "utf-8";
/* CSS Document */
body{
    background-image:url(Images/backgroundmain.jpg);
    min-width:100%;
    font-family: Arial, Helvetica,sans-serif;
    font-size:15px;
}

#header{
    position:fixed;
    text-align:center;
    background-color:#474747;
    margin:auto;
    width:100%;
    height:50px;
    display:block;
    min-width:1000px;
}

#container{
    background-color:#FFF;
    margin:auto;
    width:70%;
}

.nav{
    text-align:center;
    background-color:#999;
}

.navigation {
    position:fixed;
    display:block;
    margin-top:15px;
    padding:0;
    list-style:none;
}

.navigation li {
    float:left;
    width:150px;
    position:relative;
}

.navigation li a {
    background:#262626;
    color:#fff;
    display:block;
    padding:8px 7px 8px 7px;
    text-decoration:none;
    border-top:1px solid #666;
    border-bottom:1px solid #666;
    text-align:center;
    text-transform:uppercase;
}
.navigation li a:hover {
    color:#666;
}

.navigation ul {
    position:absolute;
    left:0;
    display:none;
    margin:0 0 0 -1px;
    padding:0;
    list-style:none;
    border-bottom:1px solid #666;
}

.navigation ul li {
    width:150px;
    float:left;
    border-top:none;
}

.navigation ul a {
    display:block;
    height:15px;
    padding:8px 7px 13px 7px;
    color:#fff;
    text-decoration:none;
    border-top:none;
    border-bottom:1px solid #666;
}

.navigation ul a:hover {
    color:#666;
}

JavaScript(如果它重要..?):

// Executes the function when DOM will be loaded fully
$(document).ready(function () {
// hover property will help us set the events for mouse enter and mouse leave
    $('.navigation li').hover(
// When mouse enters the .navigation element
        function () {
//Fade in the navigation submenu
            $('ul', this).fadeIn(); // fadeIn will show the sub cat menu
        },
// When mouse leaves the .navigation element
        function () {
//Fade out the navigation submenu
            $('ul', this).fadeOut(); // fadeOut will hide the sub cat menu
        }
    );
});

Shows the space on the left hand side.

最佳答案

您需要通过添加 margin:0 来移除 body 上的默认边距:

body {
    background-image:url(Images/backgroundmain.jpg);
    min-width:100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size:15px;
    margin:0;
}

jsFiddle example

关于javascript - 页眉没有填满整个页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22749592/

相关文章:

javascript - 如果分配对象而不是 key ,如何删除本地存储?

javascript - 简单的区 block 链程序

javascript - 如何在页面加载时从 localStorage 加载 jPlayer 播放列表?

javascript - HTML CSS - 透明度

javascript - 鼠标悬停时单词高亮显示

html - 在 Watir Ruby 中访问顺序相同的元素

html - 将 HTML 拆分为页面,不将行切成两半

javascript - 从未在 ApiController 中调用 Post 方法

html - center h1 在屏幕中间

javascript - 我在 bootstrap 中有一个表 - 如何添加一个包含所选行的删除按钮的列?