我嘗試在x方向上使用兩個重複背景圖像作爲我的div。但是我不能。如何在我的div中使用X方向上的兩個重複圖像(即,我需要將我的單詞div分成兩個相等的部分。對於我的第一部分,我需要使用我的第一張圖片和背景重複-x,然後休息部分應該填充我的第二張圖片重複-x方向)。請幫助我在一個div中使用兩個重複背景圖像
1
A
回答
1
沒有你的代碼不能真的知道你要什麼,但我會做到這一點:
<div class="outer_div">
<div class="left_half"></div>
<div class="right_half"></div>
</div>
<style>
.outer_div{
width: 500px; /*or whatever you need the width to be */
}
.left_half{
background-image: url("your image here") repeat-x;
width: 50%;
float:left;
}
.right_half{
background-image:url("your image here") repeat-x;
width: 50%;
float:right;
}
</style>
1
您將需要使用CSS3
爲多個背景爲一個單個div
。
HTML:
<div class="backgrounds"></div>
CSS:
.backgrounds {
background: url(http://userlogos.org/files/logos/pek/stackoverflow2.png),
url(http://www.gravatar.com/avatar/3807b3e7ad69d363d4490540c663af5f?s=128&d=identicon&r=PG);
background-repeat: no-repeat, repeat;
background-position: center, left;
width: 700px;
height: 300px;
}
jsFiddle DEMO: Multiple Background For Single Div
編輯:修訂的jsfiddle爲repeat-x
瞭解更多關於CSS3多背景HERE。
相關問題
- 1. 兩個背景圖像,只有一個應該重複
- 2. 在第一個圖像下重複第二個背景圖像
- 3. 使背景圖像是一個div
- 4. 背景圖像垂直重複爲一個div
- 5. 背景圖像並且在一個DIV
- 6. 讓一個div背景圖像在裏面重複一個源文件
- 7. 背景div圖像 - 重複問題
- 8. 動畫兩個背景在一個div
- 9. 如何使用兩個背景圖像
- 10. 將一個背景圖像拆分爲兩個div
- 11. 將一個背景圖像放在一個div標籤中
- 12. HOWTO設置一個div背景圖像
- 13. 背景圖像在div中心不透明度不使用兩個div
- 14. 在一個背景圖像
- 15. 使用bootstrap重複背景圖像3
- 16. 在一個div中的多個背景圖像
- 17. 給兩個背景顏色,一個div
- 18. CSS限制背景重複(多個背景圖像)
- 19. 使用CSS在包含div的背景圖像上顯示兩個div
- 20. 背景圖像(圖案)重複只有一半div
- 21. 重複圖像背景
- 22. WPF重複圖像背景
- 23. 重複背景圖像
- 24. 在Swift中重複背景圖像
- 25. 使圖像(不背景img)在div重複?
- 26. 試圖重複一個非背景圖像
- 27. 重疊在兩個背景div的中心div?`
- 28. 我可以在html div中使用兩個圖像作爲背景
- 29. 插入圖像使用另一個div的背景圖像使用JS
- 30. 從許多背景圖像中創建一個背景圖像
向我們顯示您的代碼。 – Lowkase