我是一名新手网页设计师,我需要一些帮助。 请参阅下面的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>
答案 0 :(得分:2)
您应该使用width:100%
标记上的.container
而不是vw
大小调整属性。 vw
指定了包含滚动条的总视口区域。
.container {
width:100%;
height: 1000px;
background-image:url(images/backgrounds/universal-background.gif);
background-repeat: repeat;
}