1.23

一、今日学习内容:html

    区分了关于div和表格

复制代码
<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>菜鸟教程(runoob.com)</title> 
</head>
<body>
 
<div id="container" style="500px">
 
<div id="header" style="">
<h1 style="margin-bottom:0;">主要的网页标题</h1></div>
 
<div id="menu" style="height:200px;100px;float:left;">
<b>菜单</b><br>
HTML<br>
CSS<br>
JavaScript</div>
 
<div id="content" style="height:200px;400px;float:left;">
内容在这里</div>
 
<div id="footer" style="clear:both;text-align:center;">
版权 © runoob.com</div>
 
</div>
 
</body>
</html>
复制代码
复制代码
<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>菜鸟教程(runoob.com)</title> 
</head>
<body>
 
<table width="500" border="0">
<tr>
<td colspan="2" style="">
<h1>主要的网页标题</h1>
</td>
</tr>
 
<tr>
<td style="100px;">
<b>菜单</b><br>
HTML<br>
CSS<br>
JavaScript
</td>
<td style="height:200px;400px;">
内容在这里</td>
</tr>
 
<tr>
<td colspan="2" style="text-align:center;">
版权 © runoob.com</td>
</tr>
</table>
 
</body>
</html>
复制代码

二、遇到的问题

   对于div和table写相同页面时布局不能很熟练地运用

三、明日计划

   明天继续学习HTML

原文地址:https://www.cnblogs.com/zyljal/p/14900326.html