【实例介绍】
框架边框宽度framespacing
当框架有边框时,边框宽度在默认情况下是1像素。IE规定,通过framespacing属性还可以调整其大小。
【基本语法】
<frameset framespacing="边框宽度">
【语法介绍】
边框宽度就是在页面中各个边框之间的线条宽度,以像素为单位。边框宽度只能对框架集使用,对单个框架无效。
【实例代码】
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>边框宽度</title> </head> <frameset rows="80,*" frameborder="yes" border="0" framespacing="10"> <frame src="top.html"name="topFrame" scrolling="No" noresize="noresize" id="topFrame" /> <frame src="dibu.html" name="mainFrame" id="mainFrame" /> </frameset> <noframes><body> </body></noframes> </html>
【代码分析】
在代码中,加粗的framespacing="10"标记用于设置边框的宽度,在浏览器中预览,效果如图所示。
【素材及源码下载】
请点击:边框宽度framespacing 下载本实例相关素材及源码
……