比如设置页面的字符集为utf-8,则对应的meta标签为
<meta charset="UTF-8">。
<div style='height:120pxwidth:960pxtext-align:centerborder-bottom:1px solid black'>头部</div><div style='height:480pxborder-bottom:1px solid black'>
<div style='height:480pxwidth:120pxfloat:leftclear:noneborder-right:1px solid black'>分类菜单</div>
<div style='height:480pxwidth:840pxfloat:leftclear:noneborder:0px'>内容页</div>
</div>
<div style='height:120pxwidth:960pxtext-align:centerborder:0px'>底部版权信息</div>
<html><head>
<title>html框架集应用</title>
<style>
.container{width:810px}
.aaa{
width:800px
height:100px
background-color:red
}
.bbb{
width:200px
height:600px
background-color:yellow
}
.ccc{
width:600px
height:600px
background-color:green
}
.ddd{
width:800px
height:100px
background-color:blue
}
</style>
</head>
<body>
<div class="container">
<iframe class="aaa" frameborder=1></iframe>
<iframe class="bbb" frameborder=1></iframe>
<iframe class="ccc" frameborder=1></iframe>
<iframe class="ddd" frameborder=1></iframe>
</div>
</body>
</html>
当然直接用<frameset>构建框架网页不需要如此多的css控制,直接和表格一样布局。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)