1
我需要動態調整div的高度以顯示其背景圖像。我試圖讓這個工作,所以我可以做的CSS轉換技巧,你把鼠標放在一個div和背景放大,但我的圖像將有不同的大小。任何幫助表示讚賞...我卡住了!根據背景圖像尺寸div
CSS:
<style>
.dynaimage{
width:80%;
background-image:url('variable-image');
background-size:100%; margin:0 auto;
}
</style>
HTML:
<div class="dynaimage"></div>
<p>The above div should take the height of its background image</p>
這比結我的大腦周圍捆綁的方式更容易!日Thnx! –