作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 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>
最佳答案
你可以做的是将你的 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/
我是一名优秀的程序员,十分优秀!