gpt4 book ai didi

html - border-image 没有环绕整个边框

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

我如何获得我用来环绕整个边框的图像?它只出现在顶部和底部。我使用 border-image.com 将其缩小,但我只能在顶部或底部或左右边框上获得所需的结果。我基本上希望图像以一致的方式重复环绕(公司 Logo 在所有边界重复),而不必以任何方式拉伸(stretch)、操纵或缩放它。我真的很感激任何帮助?

Here's what I have so far

HTML:

 <div id="outer_container">
...
</div>

CSS:

#outer_container {
height: 1495px;
width: 925px;
margin-right: auto;
margin-left: auto;
background-repeat: repeat-x;
background-attachment: fixed;
background-color: #E7EAF5;
border-radius: 15px;
border-style: solid;
border-width: 38px 38px 38px 38px;
border-image: url(http://lorempixel.com/81/81/) 81 0 fill repeat stretch;
}

最佳答案

问题是您在 81 之后添加的 0。如果删除该数字,边框将应用于所有边框

border-image: url(http://lorempixel.com/81/81/) 40 fill repeat stretch;

http://jsfiddle.net/4rjw6/

关于html - border-image 没有环绕整个边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22099618/

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