gpt4 book ai didi

html - 如何在不裁剪的情况下将完整图像的高度调整为适合 chrome/任何浏览器的背景?

转载 作者:行者123 更新时间:2023-11-28 14:21:53 25 4
gpt4 key购买 nike

我是 CSS 初学者,想在背景上设置图像。我正在尝试将图像高度设置为适合屏幕而不裁剪图像。我只是想让滚动条消失。这是代码

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style>
.bgimage {
background-position: center center;
margin: 0px 0px 0px 0px;
background-image: url('Images/56216134.jpg');
background-size: 100%;
background-repeat: no-repeat;
width: 100%;
height: 1000px;
padding: 0px 0px 0px 0px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div class="bgimage">
</div>
</form>
</body>
</html>

o

enter image description here

最佳答案

你可以做的是将你的 div 高度设置为你的 form 的 100%(如果你的 form正文).

然后您必须将background-image size 属性设置为“contain”:

background-size: contain;

The keyword contain will resize the background image to make sure it remains fully visible.

更多信息about background-size property .

这是一个代码片段示例:

html, body, form{
width: 100%;
height: 100%;
}

.bgimage {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-image: url('https://www.capebretonpost.com/media/photologue/photos/cache/yv-23052017-billcurry-1_large.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
<body>
<form id="form1" runat="server">
<div class="bgimage">
</div>
</form>
</body>

如果你想让你的图片占据你的整个宽度,那么你可以使用 background-size: cover; 如下:

html, body, form{
width: 100%;
height: 100%;
}

.bgimage {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-image: url('https://www.capebretonpost.com/media/photologue/photos/cache/yv-23052017-billcurry-1_large.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
<body>
<form id="form1" runat="server">
<div class="bgimage">
</div>
</form>
</body>

关于html - 如何在不裁剪的情况下将完整图像的高度调整为适合 chrome/任何浏览器的背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55116144/

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