小白的第五天
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小白的第五天相关的知识,希望对你有一定的参考价值。
2016年10月14日星期五
引入css样式文件:
1.在“html”所在文件夹中,新建文件夹“css”,并在该文件夹内新建文本文档,保存为“.css”格式;
2.将“css”文件夹拉入sublime中;
3.将“.html”中的style部分(包括<style></style>),剪切到“.css”文件中;
4.将“.css”文件中的<style></style>删除,并且全部选中用“shift+tab”调整格式,进行保存;
5.在“.html”文件中加入<link rel="stylesheet" type="text/css" href="./css/kitty.css">
2016年10月17日星期一
表格制作:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- 网页名 -->
<title>table</title>
</head>
<body>
<table>
<!-- 表名 -->
<caption>table</caption>
<!-- 表头 -->
<thead>
<!-- 行 -->
<tr>
<!-- 字体加粗居中 -->
<th></th>
<!-- 字体无加粗,左对齐 -->
<td></td>
</tr>
</thead>
<tbody>
<!-- travel to right 行 -->
<tr>
<!-- td to dow 列 -->
<td>内容</td>
<!-- colspan=“数量” 多列/多列合并 -->
<td colspan="数字">内容</td>
<!-- rowspan="数量" 多行/多行合并-->
<td rowspan="数字">内容</td>
</tr>
</tbody>
</table>
</body>
</html>
在<table 中+ border="" width="" height="">不需要加“;”
</table>
<thead></thead>与<tbody></tbody>并不是必须使用,只是一种格式。
以上是关于小白的第五天的主要内容,如果未能解决你的问题,请参考以下文章