<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML布局</title>
</head>
<body>
<!--
<div id="container" style="width: 500px">
<div id="header" style="background-color: cornflowerblue">
<h4 style="margin-bottom: 0;color: red;font-size: 20px">主要网页标题</h4>
</div>
<div id="menu" style="background-color: green;width: 100px;height: 200px;float: left">
<b>菜单</b><br>
HTML<br>
CSS<br>
JavaScript<br>
</div>
<div id="content" style="background-color: gray;height:200px;width:400px;float:left;">
内容在这里
</div>
<div id="footer" style="background-color: yellow;clear: both;text-align: center">
版权 © runoob.com</div>
</div>
</div>
-->
<!--
<table width="500" border="0">
<tr>
<td colspan="2" style="background-color: #FFA500">
<h1>主要网页标题</h1>
</td>
</tr>
<tr>
<td style="background-color: #FFD700;width: 100px;vertical-align: top">
<b>菜单</b><br>
HTML<br>
CSS<br>
JavaScript
</td>
<td style="background-color: gray;height: 200px;width: 400px;vertical-align: top">
内容在这里
</td>
</tr>
<tr>
<td colspan="2" style="background-color: #FFA500;text-align: center">
版权 © runoob.com
</td>
</tr>
</table>
-->
<div id="container" style="width: 500px">
<div id="header" style="background-color: mediumslateblue">
<h1 style="margin-bottom: 0;text-align: center">Div布局实例</h1>
</div>
<div id="menu" style="background-color: gray;height: 200px;width: 100px;float: left">
菜单<br>
num1<br>
num2<br>
num3<br>
</div>
<div id="content" style="background-color: aqua;width: 300px;height: 200px;float: left">
中间内容
</div>
<div id="right" style="background-color: red;width: 100px;height: 200px;float: right">
右边内容
</div>
<div id="bool" style="background-color: saddlebrown;clear: both;text-align: center">
作者 m10
</div>
</div>
</body>
</html>
1、网站布局
大多数网站会把内容安排到多个列中(就像杂志或报纸那样)。
大多数网站可以使用 <div> 或者 <table> 元素来创建多列。CSS 用于对元素进行定位,或者为页面创建背景以及色彩丰富的外观。
虽然我们可以使用HTML table标签来设计出漂亮的布局,但是table标签是不建议作为布局工具使用的 - 表格不是布局工具。
2、HTML 布局 - 有用的提示
Tip: 使用 CSS 最大的好处是,如果把 CSS 代码存放到外部样式表中,那么站点会更易于维护。
通过编辑单一的文件,就可以改变所有页面的布局。如需学习更多有关 CSS 的知识,请访问我们的CSS 教程。
Tip: 由于创建高级的布局非常耗时,使用模板是一个快速的选项。
通过搜索引擎可以找到很多免费的网站模板(您可以使用这些预先构建好的网站布局,并优化它们)。
HTML 布局标签
标签 描述
<div> 定义文档区块,块级(block-level)
<span> 定义 span,用来组合文档中的行内元素。