我正在致電差距。所以,我需要以通用格式提供代碼,以便適用於任何設備。如何在任何設備的中心放置圖像?
我有尺寸的圖像,尺寸爲2350 * 180。
我試圖與這些代碼..
width: 100%;
top: 100%;
margin-top: 50%;
但是,這些並不在該中心的各種設備。
然後我用
vertical-align: middle;
然後
display: block;
text-align: center;
然後
<table>
<tr style="vertical-align: middle;">
<td id="main" style="width: 100%;">
<img src="" />
</td>
</tr>
</table>
嘗試了所提到的所有上述CSS,我的輸出---->圖像棍棒屏幕頂部的頂部邊距如果我給了margin-top:0;
請幫助我,糾正我。
我有2個問題相對於這個大圖像
現在,我有一個背景圖像
style="background:url("img/bg.png") no-repeat fixed center top; width:100%; height:100%; "
這個代碼適用於只有少數..是否有任何錯誤我的代碼?
第二個問題,當我滾動那裏是可見的滾動條。所以我添加了
style="overflow:hidden;"
<img src=""/> tag.
我是否正確或應該添加任何其他代碼?
是否可以將圖像用作實際的背景圖像或是否必須是「」?然後你可以使用'background:url(/ * image-path/img.png * /)no-repeat center center;' – kleinfreund
我在該圖像上使用了**映射功能**。現在,@ kleinfreund請指導我是否可以使用它作爲背景圖片? – user
您不能在背景圖像上使用圖像映射。 (我昨天試過類似的東西:<) – kleinfreund