gpt4 book ai didi

CSS 半屏浏览器宽度

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

每次我拖动浏览器窗口使其自动调整为一半显示器大小时,旁边会出现一个空白 block 。我试过将宽度更改为 min-width: 100%,但这并不能解决问题。有什么想法吗?

网站:http://andrewgu12.kodingen.com/graphicDesign/index.php

CSS:

 div#bodyContent-container { 
min-width:100%;
height: 100%;
min-height:1100px;
background:#f3f3f3;
margin: 0 auto;
padding: 0;
}
div#bodyContent {
width:960px;
height:100%;
min-height: 1024px;
margin: 0 auto;
padding: 0;
-webkit-box-shadow: 6px 0px 10px -7px #888, -6px 0px 10px -7px #888;
-moz-box-shadow: 6px 0px 10px -7px #888, -6px 0px 10px -7px #888; /* Firefox 3.6 and earlier */
box-shadow: 6px 0px 10px -7px #888, -6px 0px 10px -7px #888;
padding-top: 200px;
}
footer {
min-width: 100%;
height:50px;
color:#ffffff;
text-align: center;
padding-top: 20px;
bottom: 0;
background: #161616; /* Old browsers */
background: -moz-linear-gradient(top, #161616 0%, #202020 92%, #131313 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#161616), color-stop(92%,#202020), color-stop(100%,#131313)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #161616 0%,#202020 92%,#131313 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #161616 0%,#202020 92%,#131313 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #161616 0%,#202020 92%,#131313 100%); /* IE10+ */
background: linear-gradient(top, #161616 0%,#202020 92%,#131313 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#161616', endColorstr='#131313',GradientType=0 ); /* IE6-9 */
}

最佳答案

你好,现在定义你的 body min-width:960px;修复这个问题

像这样

body{
min-width:960px;
}

结果是

enter image description here

关于CSS 半屏浏览器宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13506743/

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