服務(wù)熱線
153 8323 9821
我在一個(gè)普通網(wǎng)頁(yè)中放置一張圖片(用img tag)但是不知
什么原因,總是會(huì)在左邊和上邊留下不一些空白,我想干脆把圖片做成body的background屬性算了,但是后來(lái)發(fā)現(xiàn)這樣的話會(huì)使按上一頁(yè)下一頁(yè)時(shí)出現(xiàn)白屏,所以否決了這個(gè)方案.
后來(lái)再找了一下body的一些屬性,終于找到了 下面兩個(gè)屬性,原來(lái)body的默認(rèn)左邊距是10,而上邊距是15,所以我就把其設(shè)為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.