如何獲取我用來環繞整個邊框的圖像?它只顯示在頂部和底部。我使用border-image.com將其縮小,但我只能在頂部或底部或左側和右側邊框上獲得所需的結果。我基本上希望圖像以一致的方式反覆環繞(公司的標誌在所有邊界重複),而不必以任何方式拉伸,操縱或縮放圖像。我真的很感激任何幫助?
Here's what I have so farborder-image不會環繞整個邊框
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;
}
我現在明白了,border-image不會環繞整個邊框。有沒有其他方法可以完成我的任務? – user3361043