當(dāng)前位置:軟件學(xué)堂 > 資訊首頁(yè) > 網(wǎng)絡(luò)編程 > DIV+CSS > 框架邊框與頁(yè)面內(nèi)容的水平邊距marginwidth

框架邊框與頁(yè)面內(nèi)容的水平邊距marginwidth

2012/11/22 14:50:58作者:佚名來(lái)源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例介紹】

框架邊框與頁(yè)面內(nèi)容的水平邊距marginwidth

框架頁(yè)面與HTML中的表格一樣,也可以具有邊框與頁(yè)面內(nèi)容的水平邊距。

【基本語(yǔ)法】

<frame  src="頁(yè)面源文件地址"  marginwidth="水平邊距">

【語(yǔ)法介紹】

水平邊距用于設(shè)置頁(yè)面的左右邊緣與框架邊框的距離。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>框架邊框與頁(yè)面內(nèi)容的水平邊距</title> </head> <frameset rows="134,*" cols="*" frameborder="yes" border="1" framespacing="1">   <frame src="top.html" name="topFrame" noresize marginwidth="100"/>   <frameset rows="*" cols="355,*" framespacing="1" frameborder="yes" border="1">     <frame src="left.html" name="leftFrame" noresize marginwidth="30"/>     <frame src="right.html" name="rightFrame" noresize marginwidth="50"/>   </frameset> </frameset> <noframes><body> </body></noframes> </html>

【代碼分析】

在代碼中,加粗部分的marginwidth="100"、marginwidth="30"和marginwidth="50"標(biāo)記用于設(shè)置框架邊框與頁(yè)面內(nèi)容的水平邊距為100像素、30像素、50像素,在瀏覽器中預(yù)覽,如果如圖所示。

框架邊框與頁(yè)面內(nèi)容的水平邊距marginwidth運(yùn)行效果

 【素材及源碼下載】

請(qǐng)點(diǎn)擊:框架邊框與頁(yè)面內(nèi)容的水平邊距marginwidth 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: 框架邊框  頁(yè)面內(nèi)容  水平邊距