在HBuilder中写完各种标签后一定要先保存 Ctrl+s 之后,在运行才能在浏览器中显示,不然写的在多也显示不出内容。

<!DOCTYPE html>
<html>
        <head>
                <meta charset="UTF-8">
                <title> 第一个集合框架 </title>
        </head>
        <frameset rows="10%,50%,40%">
                <frame />
                <frameset cols="30%,*,40%">
                        <frame />
                        <frame />
                        <frame />
                </frameset>
                <frameset cols="50%,*">
                        <frame />
                        <frame />
                </frameset>                
        </frameset>
</html>

更多推荐

解决HTML无论写什么都不能在浏览器中显示