gpt4 book ai didi

html - 窗口仍然有水平滚动

转载 作者:太空宇宙 更新时间:2023-11-04 02:55:07 24 4
gpt4 key购买 nike

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

<!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 指定总视口(viewport)区域,其中还包括滚动条。

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

关于html - 窗口仍然有水平滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32292477/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com