Window 仍然有水平滚动

Window still has horizontal scroll

我是一名网页设计师新手,需要一些帮助。 请参阅下面我的 html/css 代码。 该页面应该占据 100% 的视口。它只是有点太大了。不知道为什么会这样。无论视口大小如何,它总是有一点剩余。任何意见表示赞赏!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
@font-face {
    font-family: "Chaparral";
    src: url(fonts/ChaparralPro-Regular.otf);
}

body { margin:0; /* This is used to reset any browser-default margins */ }

.container {
    width:100vw;
    height: 1000px;
    background-image:url(images/backgrounds/universal-background.gif);
    background-repeat: repeat;
}

#title {
    font-size: 15pt;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline;
}

ul {
    float: left;
    display: inline;
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: right;
}

li {
    display: inline;
    padding: 15px;
}

.header {
    background-color: #403737;
    color: white;
    font-family: "Chaparral";
    font-weight: normal;
    height: 100px;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<div class="container">
  <div class="header">
        <h1 id="title">Risch's Jewelry Emporium</h1>
        <ul>
            <li>Sales</li>
            <li>Repair</li>
            <li>Learn</li>
            <li>Contact</li>
        </ul>
    </div>
</div>
</body>
</html>

您应该在 .container 标签上使用 width:100% 而不是 vw 尺码 属性。 vw 指定总视口区域,其中还包括滚动条。

.container {
    width:100%;
    height: 1000px;
    background-image:url(images/backgrounds/universal-background.gif);
    background-repeat: repeat;
}