服務熱線
153 8323 9821
我在一個普通網頁中放置一張圖片(用img tag)但是不知
什么原因,總是會在左邊和上邊留下不一些空白,我想干脆把圖片做成body的background屬性算了,但是后來發現這樣的話會使按上一頁下一頁時出現白屏,所以否決了這個方案.
后來再找了一下body的一些屬性,終于找到了 下面兩個屬性,原來body的默認左邊距是10,而上邊距是15,所以我就把其設為0就可以了.
Syntax
HTML <BODY LEFTMARGIN = sMargin ... > Scripting body.leftMargin [ = sMargin ]
Possible Values
sMargin String that specifies the left margin, in pixels.The property is read/write with a default value of 10.
Syntax
HTML <BODY TOPMARGIN = iMargin ... > Scripting body.topMargin [ = iMargin ]Possible Values
iMargin Integer that specifies the top margin of the body, in pixels.The property is read/write with a default value of 15.