1.div

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
body{
margin: 0px;
}
#container{
width: 100%;
height: 950px;
background-color: darkgray;
}
#heading{
width: 100%;
height: 10%;
background-color: antiquewhite;
}
#content_menu{
width: 30%;
height: 80%;
background-color: cadetblue;
float: left;
}
#content_body{
width: 70%;
height: 80%;
background-color: darksalmon;
float: left;
}
#footing{
width: 100%;
height: 10%;
background-color: cornflowerblue;
clear: left;
}
</style>
</head>
<body>
<div id="container">
<div id="heading"></div>
<div id="content_menu"></div>
<div id="content_body"></div>
<div id="footing"></div>
</div>
</body>
</html>

2.table

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body marginheight="0px" marginwidth="0px">
<table width="100%" height="950px" style="background-color: darkgray">
<tr>
<td colspan="2" width="100%" height="10%" style="background-color: rebeccapurple">
</td>
</tr>
<tr>
<td width="30%" height="80%" style="background-color: blue"></td>
<td width="70%" height="80%" style="background-color: gold"></td>
</tr>
<tr>
<td colspan="2" width="100%" height="10%" style="background-color: aquamarine"></td>
</tr>
</table>
</body>
</html>

最新文章

  1. 追根溯源:EntityFramework 实体的状态变化
  2. 使用python selenium webdriver模拟浏览器
  3. MathType 公式后的空格问题
  4. 读书笔记-String
  5. poj2492 带权并查集
  6. OpenSSL进行SSL通讯的一些问题
  7. Android-简单的sdcard文件浏览
  8. c++11:function的用法
  9. WARNING OGG-01223 TCP/IP error 111 (Connection refused)
  10. hdu4709求三角形面积
  11. Oracle 数据迁移(从Oracle11G迁移到更高的版本号Oracle10G低版本号)
  12. php 验证码类
  13. kali系统教程:创建热点
  14. 非常易于理解‘类&#39;与&#39;对象’ 间 属性 引用关系,暨《Python 中的引用和类属性的初步理解》读后感
  15. 【app】adb连接问题整理
  16. 【emWin】例程十四:xbf外置字体
  17. 如何去除WIN7任务栏项目上右键菜单中的最近访问一栏
  18. SpringBoot学习(三)IDEA
  19. (转)Gmail,你必须了解的12个邮件编码问题
  20. XSL

热门文章

  1. 创建和管理表【weber出品必属精品】
  2. window.dialogArguments的使用
  3. VC++ try catch (转)
  4. visual studio 未将对象引用设置到对象的实例
  5. sqlite的事务
  6. JAVA GUI 工具
  7. 操作html标签之找到标签(续)
  8. Hdu1091
  9. Scala学习笔记--上界(&lt;:)、视图界定(&lt;%)、上下文界定(T:M)
  10. #include&lt;iostream&gt;与#include&lt;iostream.h&gt;的区别