我想將圖像放置在背景圖像上。背景包含在放置在包含div底部的div內。我想在放置在底部中心的背景圖像頂部的右下角放置一個圖像。如何在背景圖像上放置圖像
我試圖使用兩個背景圖像,但無法將圖像放置在重複div上,而沒有在移動設備上放置的問題,因爲文本區域縮小並將圖像移動到容器下方。
我嘗試將圖像放在線上,但無法使其顯示在背景的頂部。
關於什麼是最好的方法會做什麼的任何想法?
.gradient-bg.slide {
background: url("http://www.clker.com/cliparts/f/d/b/5/1206555848388219874chlopaya_Bird.svg.med.png") no-repeat left top, linear-gradient(#ffcd74, #f8981d);
/*background: #ffcd74;
background: -moz-linear-gradient(top, #ffcd74 29%, #f8981d 78%);
background: -webkit-linear-gradient(top, #ffcd74 29%,#f8981d 78%);
background: linear-gradient(to bottom, #ffcd74 29%,#f8981d 78%);*/
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcd74', endColorstr='#f8981d', GradientType=0);
}
.slide_cloud {
background: url("https://preview.ibb.co/cyvOLv/harris_relativity_cloud_footer.png") no-repeat bottom center;
background-size: inherit;
padding: 20px;
height: 500px;
text-align: center;
}
.logo-image {
background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/WikiSpecies_notext.svg/300px-WikiSpecies_notext.svg.png") no-repeat bottom right;
padding-top: 100px;
}
<div class="gradient-bg slide">
<div class="slide slide_cloud">
<h2>Generic Header</h2>
<div class="logo-image">
</div>
<div class="slide-content">
<div class="text">Generic text.</div>
</div>
</div>
</div>
歡迎的StackOverflow,你的問題應該包含一個[**最小的,完整的和可驗證的實例**](http://stackoverflow.com/help/mcve )。 – hungerstar
你好@hungerstar,我已經包含了一個樣本 – penmas
這並不完全清楚你想要的頁面的樣子。 –