帧之间的空间

时间:2013-10-25 16:49:12

标签: html css

<!Doctype html>
<html>
<frameset rows="26%,24%,*" noresize border="0" frameborder="no" framespacing="0">
<frame src="frame_a.html" target="_self" name="logo" scrolling="auto">
<frame src="frame_b.html" target="_self" name="menu" scrolling="no">
<frame src="frame_c.html" name="images_slider" scrolling="auto" target="_self">
</frameset>
</html>

但帧之间还有空间如何删除那个空间???我想删除菜单和标题之间的空格,即框架a和框架b

2 个答案:

答案 0 :(得分:0)

0文件中将正文和html边距设置为frame_#.html,你应该很好。

答案 1 :(得分:0)

更新frameset元素中的rows属性

<frameset rows="26%,24%,*" noresize border="0" frameborder="no" framespacing="0">

来自:26% 至:45

Example

我使用像素而不是百分比(例如45px = 45)来表示帧a和帧b之间的间距。 您可以相应地调整第二个参数(24%)以获得第b帧和第c帧之间的间距。

Documentation

希望有所帮助!