本文主要包含html等相关知识,wz2292667460的博客希望在学习及工作中可以帮助到您
1.表格
colspan=”2”合并2行
rowspan=”2”合并2列向下合并
cellspacing="0"除去表内距边界的距离
<caption>表的标题</caption>
表的格式:
align=”left”居左
align=”center”居中
align=”right”居右
<thead bgcolor=”red”> ..表..</thesd> 将表头设置为red色
<tbody>..表..<tbody>表中设置
<tfoot>..表..<tfoot>表尾设置
<fieldset style="width: 251px;"> ..表..<</fieldset>设置一个边框
<legend align="center" style="width: 100px;color: red">用户注册</legend>
边框上填加文字
cellpadding="80px" 设置表的放大倍数 cellspacing="10px"设置表中每个格子的间距
<strike style=”color:red”> ...</strike>划去价格
<s>....</s>划去的价格
<marquee direction="up">123</marquee>滚动信息显示
2.浮动框架
<frameset rows="30%,25%,*">
<frame src="up.html">
<frame src="mid.html">
<frame src="down.html">
</frameset>
分为上,中,下三个框架
<frameset cols="30%,25%,*" noresize="noresize">
<frame src="left.html">
<frame src="mid.html">
<frame src="right.html">
</frameset>
分为左,中,右三个框架