当前位置:首页 > Web开发 > 正文

HTML框架

2024-03-31 Web开发

注意:frameset不要和body放在同一个html文件内

<!DOCTYPE html> 

<html> 

<head> 

    <meta charset=” utf-8” > 

    <title>HTML垂直框架</title>

</head>

<!-- 注意:frameset不要和body放在同一个html文件内 -->

    <frameset cols="25%,50%,25%">

        <frame src="frame_a.html" scrolling="no">

        <frameset rows="25%,50%,25%">

            <frame src="frame_a.html" scrolling="no">

            <frame src="frame_b.html" scrolling="no">

            <frame src="frame_c.html" scrolling="no">       

        </frameset>

        <frame src="frame_c.html" scrolling="no">         

    </frameset>

</html>

实现如下:

技术图片

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/web/41939.html