gpt4 book ai didi

html - 缩小页面时的 css3 最小-最大宽度

转载 作者:可可西里 更新时间:2023-11-01 14:56:10 27 4
gpt4 key购买 nike

祝你有个美好的一天。我正在处理一个网页,但我被困在定义最大和最小宽度上。基本上我希望我的页面在缩小网页时像大多数网页一样居中。请需要专家帮助。尽快谢谢。

body
{
height:100%;
width:100%;

margin:0 auto;
background-image: -webkit-linear-gradient(top, #E5E5E5 30%, #999);
background-image: -moz-linear-gradient(top, #E5E5E5 30%, #999);
background-image: linear-gradient(top, #E5E5E5 30%, #999);

}

#mainContainer
{
background-image:url(bg3.jpg);
background-repeat:repeat;
background-color:#999;
width:70%; /*default width in percent for a liquid layout.
the problem is when I zoom out the page the width remains to be in 70% therefore forcing the contents to be pushed to the left corner instead of being centered.*/
min-width:940px;
margin:5px auto;
height:100%;
padding:0 1% 0 1%;
-webkit-border-radius: 10px;
border-radius: 10px;
}

最佳答案

基本上这只能通过脚本来实现。

获取浏览器屏幕的 70% 宽度。将该宽度转换为其对应的 px 值使用从转换/计算中获得的值设置#mainContainer 的最大宽度。

$( document ).ready( function(){
setMaxWidth();

function setMaxWidth() {
$( "#mainContainer" ).css( "maxWidth", ( $( window ).width() * 0.7 | 0 ) + "px" );
}

});

-感谢 Esailija link

关于html - 缩小页面时的 css3 最小-最大宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8122420/

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