gpt4 book ai didi

css - 跨屏幕分辨率调整图像大小

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

我有一个像这样的div标签

<div id="MainMenu1" dojotype="dijit.layout.ContentPane"></div>

这个 div 与类似的 css 相关联

#MainMenu1 
{
height:53px;
background: url(../images/top_banner.png) no-repeat;
background-position:center;
margin:auto;
width:100%;
border:0;
}

我看到背景图像在较小的屏幕上很好,但在较宽的屏幕上,它只占据中心位置。我希望图像即使在更宽的屏幕上也能占据整个屏幕,我不希望图像“重复”。我该怎么做?

最佳答案

#MainMenu1 
{
height:53px;
margin:auto;
width:100%;
border:0;
background: url(../images/top_banner.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

试试这个。它非常适合我。它应该完美地适合中心的背景,并合理地将其拉伸(stretch)到正在查看网站的任何屏幕尺寸。

关于css - 跨屏幕分辨率调整图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15808215/

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