如何使此背景圖像可見並且響應? (注:我知道我應該單獨使用CSS,但我使用的內容管理系統不會讓我添加單獨的CSS文件..)將響應背景圖像設置爲HTML中的div
如果設置了這樣的代碼,圖像不會顯示:
<div style="width: 100%; height: 100%; background-image:url('................');
background-repeat:no-repeat; background-size:cover;">
<div style="float:left; width: 32%; height:100%; display: inline-block;">
</div>
<div style="float:left; width: 32%; height:100%; display: inline-block;">
</div>
<div style="float:left; width: 32%; height:100%; display: inline-block;">
</div>
</div>
而且這樣的,顯示圖像,而不是響應:
<div style="width: 100%; height: 100%; background-image:url('................');
background-repeat:no-repeat; background-size:cover; height:150px;">
<div style="float:left; width: 32%; height:100%; display: inline-block;">
</div>
<div style="float:left; width: 32%; height:100%; display: inline-block;">
</div>
<div style="float:left; width: 32%; height:100%; display: inline-block;">
</div>
</div>
非常感謝!
如果您使用百分比高度,請確保定義父高度。 – AA2992
...並清除浮游物。 –