gpt4 book ai didi

css - 使 2 个背景图像相等

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

我有 2 个背景图像,我需要像这个版本一样在垂直方向上彼此相等 image

现在我将样式设置为:

background-repeat: no-repeat, repeat-x, repeat-y;
background-position: 925px center;

但是,图像的相等性仅在我查看此视口(viewport)时保持不变。当我退出检查工具时,它搞砸了并调整了它的大小。

我试过 calc() 和其他背景位置,但我没能解决它。

感谢任何帮助。

最佳答案

我认为这应该可以解决问题。之所以将第一个背景应用到body上,是为了当宽度的像素数为奇数时,中间不会出现白线。

*{
margin:0;
padding:0;
}
body{
background: url(https://www.w3schools.com/w3images/fjords.jpg);
overflow-x: hidden;
}
#right{
background: url(https://www.w3schools.com/w3css/img_lights.jpg);
width: 50%;
position: absolute;
right: 0px;
height: 100%;
}
<div id="right"></div>

引用
https://css-tricks.com/multiple-backgrounds-left-half-and-right-half/

关于css - 使 2 个背景图像相等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53321594/

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