css/html frame 框架

声明:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">


该 DTD 等同于 HTML 4.01 Transitional,但允许框架集内容。


三栏式布局框架:

<html>
<frameset rows="50%,50%">
<frame src="/example/html/frame_a.html">
<frameset cols="25%,75%">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
</frameset>
</frameset>
</html>


常用属性

scrolling="yes"

auto   在需要的时候显示滚动条。  

yes   始终显示滚动条(即使不需要)。  

no   从不显示滚动条(即使需要)


本文出自 “opxin” 博客,转载请与作者联系!

你可能感兴趣的:(html,框架,frame)