gpt4 book ai didi

html - 页面宽度超过浏览器窗口宽度。使用html和css

转载 作者:行者123 更新时间:2023-11-28 15:51:29 25 4
gpt4 key购买 nike

http://jsfiddle.net/WJywf/

我得到了额外的边宽。不知道是什么原因造成的。尝试了开发人员工具。页面宽度超过浏览器窗口,尝试改变背景宽度

body,
html {
text-shadow: 0px 1px 0px white;
margin: 0px;
min-height: 100%;
background-size: cover;
font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 16px;
}
.backgrnd{
position: fixed;
z-index: -9999;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background: url('../Img/bg2.jpg') no-repeat;
filter: blur(10px);
background-size: cover;
}
.container {
height: 100%;
width: 100%;
position: relative;
bottom: 0px;
right: 0px;
}

.content {
padding-bottom: 75px;
height: 100%;
}

最佳答案

您的 .search 类的宽度为 100%,左边距为 10%。这导致了问题。更新您的 .search 类,如下所示。

.search {
float: left;
margin-left: 10%;
width: 90%;
display: block;
padding-bottom: 5px;
}

关于html - 页面宽度超过浏览器窗口宽度。使用html和css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25012696/

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