gpt4 book ai didi

html - HTML 中长图像的背景代码未产生预期结果

转载 作者:太空宇宙 更新时间:2023-11-03 23:46:25 25 4
gpt4 key购买 nike

我已经尝试过 css 和 html,但都没有产生预期的结果。我的背景图片长 2000 像素,宽 810 像素。

HTML

<body>
<img src="http://i1162.photobucket.com/albums/q535/SachithPerera1/Fiverr%20- %20Living%20Thin%20Philadelphia/bg_zpse26c2157.png" class="bgpic" />
</body>

CSS

 body
{
margin: 0;
padding: 0;
width: 810px;
height: 2500px;
}

.bgpic
{
width: 100%;
height: 100%;
}

最佳答案

您的 HTML 有点不对劲。您没有设置 body 的背景属性;您只是将图像放在页面的正文中。你会想要摆脱 <img>元素并修改你的 body css 是这样的:

body { 
background-image: url("http://i1162.photobucket.com/albums/q535/SachithPerera1/Fiverr%20-%20Living%20Thin%20Philadelphia/bg_zpse26c2157.png");
background-size: 100%;
}

关于html - HTML 中长图像的背景代码未产生预期结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21437459/

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