|
发表于 2018-10-25 09:22:53
|
显示全部楼层
一段一段读
个人觉得还是看一边(http://www.w3school.com.cn/html/index.asp) 看完了基本就能看懂了
参考(http://www.w3school.com.cn/tags/tag_doctype.asp)
表格参考资料(http://www.w3school.com.cn/tags/tag_table.asp)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> html 标签
<head> 头部
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 设置字符集
<link href="style/style.css" rel="stylesheet" type="text/css"> 引入样式
</head>
<body> 内容部分标签
<table width="100%" border="0" cellspacing="0" cellpadding="0"> 建立一个表格 , 宽度 100% 也就是满屏 border 规定表格边框的宽度。
<tr>
<td class="top_left"> </td>
<td class="top_center"> </td>
<td class="top_right" align="right"> </td>
</tr>
</table>
</body>
|
|