我似乎無法擺脫由Illustrator CS5導出的SVG元素重複(作爲CSS背景)之間的空白區域。SVG背景重複之間的空白
我正在使用一個簡單的CSS background-image
和background-repeat: repeat-x
但每個重複之間總是有這個空格。我根本不使用background-size
。
這是我所看到的(在Safari瀏覽器測試/鉻):
添加,如果我打開SVG檢查邊上的任何空白,無所不有(見窗口上的右)和它去一路窗口的一面:
我試着通過File -> Scripts -> SaveDocsAsSVG
和Save as.. -> SVG
保存在Illustrator圖像。
我不知道還有什麼要嘗試在這一點上。有任何想法嗎?
編輯:發佈一些代碼..
<body>
<div class="outer">
<div class="inner">
</div>
</div>
</body>
而且基本的CSS:
.outer {
background-color: #7fcefb;
height: 700px;
background-image: url('/wp-content/themes/grizzly/assets/img/trees.png');
background-position: center 95%;
background-repeat: repeat-x;
}
.inner {
background-image: url('/wp-content/themes/grizzly/assets/svg/treeshill.svg');
height: 700px;
background-position: center bottom;
background-repeat: repeat-x;
}
您可以發佈您的代碼或鏈接?它看起來可能會有一些微小的餘量或填充。 – user3781632 2015-02-10 01:24:30
你可以發佈圖片鏈接嗎? – 2015-02-10 01:28:42
添加了一些基本的HTML和CSS來顯示設置。 SVG下載 - http://s000.tinyupload.com/?file_id=02705325478483063668 – roflmyeggo 2015-02-10 01:43:51