gpt4 book ai didi

html - 如何在 CSS 中拉伸(stretch)单个背景图像

转载 作者:行者123 更新时间:2023-11-28 11:32:26 24 4
gpt4 key购买 nike

background: url(timages/wb-right.png) 100% 0 no-repeat, url(timages/wb-left.png) 0 0 no-repeat, url(timages/wb-top.png) 0 0 no-repeat, url(timages/wb-bottom.png) 0 80px no-repeat;

我目前有这段代码为盒子的背景指定了 4 张图像。每一侧都有一个。左上右下。

唯一的问题是顶部和底部图像不会拉伸(stretch)或重复框的整个宽度。这样可以吗。如果我将任何不重复设置为重复,它会填满整个背景。

任何有用的建议

最佳答案

您正在寻找这样的东西: ?

演示: http://jsfiddle.net/abhitalks/dgcfK/

background-image: url(timages/wb-top.png), 
url(timages/wb-left.png),
url(timages/wb-right.png),
url(timages/wb-bottom.png);
background-position: left top, left bottom, top right, bottom right;
background-repeat: repeat-x, repeat-y, repeat-y, repeat-x;

关于html - 如何在 CSS 中拉伸(stretch)单个背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21090207/

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