如何讓圖像重疊其他圖像,我可以讓文字重疊我的背景圖像,但我想要在圖像頂部的一系列圖像。在html中,你如何將圖像與其他圖像重疊?
-4
A
回答
3
只需使用z-index
,該數值越高,它堆疊在堆越高(即 - 更接近觀看者):
img {
display: block;
position: absolute;
top: 0;
left: 0;
}
.image1 {
z-index: 9999;
width: 100px;
height: 100px;
}
.image2 {
z-index: 999;
width: 200px;
height: 200px;
}
.image3 {
z-index: 99;
width: 300px;
height: 300px;
}
.image4 {
width: 400px;
height: 400px;
}
<img class="image1" src="http://gallery.photo.net/photo/6182716-md.jpg">
<img class="image2" src="http://gallery.photo.net/photo/12682192-md.jpg">
<img class="image3" src="http://gallery.photo.net/photo/2568318-md.jpg">
<img class="image4" src="http://gallery.photo.net/photo/6506352-lg.jpg">
0
img {
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}
z-index的值越高越好。
1
那麼,如果你只想在背景圖片上面放置一張圖片,那麼就把你的圖片放在你擁有的任何內容中。 如果您希望圖像覆蓋圖像,請使用z-index
將z-index應用於每張圖像,其中最高的圖像爲「最高」圖像。
Z-index: 1;
Z-index: 2;
Z-index: 3;
等等等等
相關問題
- 1. 縮放時與其他圖像重疊的圖像
- 2. css中的其他圖像重疊一個圖像
- 3. 在其他圖像的網格上展開並重疊圖像
- 4. 試圖移動圖像重疊其他圖像
- 5. 如何在疊加其他圖像後合併/保存圖像?
- 6. 如何與其他圖像
- 7. 如何在MATLAB中將圖像與圖形重疊?
- 8. 如何使重疊的圖像與實際重疊的圖像重疊?
- 9. 如何在將圖像合併到其他圖像時將圖像居中?
- 10. HTML/CSS圖像重疊
- 11. 重疊的UIImage與其它圖像
- 12. 如何使圖像與nav-pills重疊?
- 13. Cakephp如何重疊圖像
- 14. 圖像與div重疊
- 15. Bootstrap與重疊圖像
- 16. 如何在點擊時將圖像更改爲其他圖像?
- 17. 如何查找運動圖像與靜止圖像重疊?
- 18. 在Matlab中重疊圖像
- 19. 如何在iOS中拖動圖像時在另一圖像上重疊圖像?
- 20. 圖像中的圖像重疊
- 21. 鈦Appcelerator操縱圖像與其他文字和其他圖像
- 22. HTML表中重疊的圖像
- 23. 如何在Java中的其他圖像中檢測圖像?
- 24. 如何在表單提交中將圖標/圖像疊加到其他圖像上?
- 25. 如何在Dreamweaver中將圖像疊加到圖像頂部?
- 26. 跨度圖像疊加文本但不包含其他圖像
- 27. 將圖像疊加在圖像上
- 28. 在android中,你將如何從圖像按鈕提取圖像?
- 29. 如何將多個圖像拖放到其他圖像上android
- 30. 如何將圖像粘貼到其他圖像上?
在CSS中使用z-index – Li357
糟糕的參數。試着製作一個更有爭議的問題,沒有人會猜測你想要什麼, – christian