我試圖在div中放置一個圖像,但是當我這樣做時它根本不顯示。我自己創建了這個圖片,並且讓div適合。目前有最大寬度和最大高度,我可以讓它顯示在框內,但只有一小部分的大小。在Div中放置圖像
我當前的代碼是...
HTML
<div id="carousel">
<img src="Images/carousel1.png" alt="#" style="max-height:100%; max-width:100%;">
</div>
CSS
#carousel {
width: 1280px;
height: 300px;
border: 1px, #000;
border-style: solid;
margin: auto;
margin-top: 10px;
}
也許你的形象是什麼問題是?你的形象是什麼尺寸? – Adjit
1280 x 300,我在Illustrator中創建了它,並使div的尺寸相同 –