如何设定html字符集

如何设定html字符集,第1张

可以通过head标签中的meta标签进行设置,

比如设置页面的字符集为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控制,直接和表格一样布局。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6222280.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-18
下一篇 2023-03-18

发表评论

登录后才能评论

评论列表(0条)

保存