首页 > 代码库 > 忘却了!!!!
忘却了!!!!
总结一周记下的标签,和代码:
加粗文体;<b>xxxxxx</b> 斜体;<i>xxxxx</i> <per></per>;定义预格式文本
<sup></sup>;上斜线 <sub></sub>;下斜线
<addr title="解释">要解释的词语</addr> <address>地址</address> 定义地址标签
<text-decration>去下划线</text-decration>
<blockquote cite="网址"></blockquote> 定义长的引用
<table> <tr> <td></td> </tr> </table> 表格格式
colspan 合并单元格横向
marigin-top:300px调整上面距离。
marigin-right 右,left 左,bottom下
margin外边距, padding内边距,
<meta charset="utf8">清楚乱码
marigin: 0 auto; 居中
border-redius: 半径,边缘。
<h1>asasd</h1> h1是字体。h1-h6
<p></P>是段落
<img src="D:/D.JPG">调入图片
{ . / . 是当前我所在的目录 代表一个文件夹
当图片和网页用在一个文件夹下。用这个}
font-size调字体大小 段落P里加<strong>
列表分为 有序,无序,自定义。,
<ul> 无序列表,<li>是内容,有序的,<ol>
list-style none 去掉点小园点。
float:漂浮
line-height-行高 行间距,
text-align:center 字体垂直居中。
marg不能居中的时候,注意width的设置宽度
li:hover {background-color: #123213}鼠标发光
在头部里,必须新建。
<a href=http://www.mamicode.com/>放在身体里,链接里,必须有字
target="_blank"跳转新网页,保留原来网页,前面得有空格
text-decoration:none: 取消文字装饰
bgcolor 添加背景色,可以加在,身体里。
background—image:url(图片地址)
背景图片重复模式background-repeat:(no-repeat不重复) (repeat-x/y横向/纵向重复)
background-size:调整背景图片大小 background-position 调整图片位置 可移动
表格制作::::
<!DOCTYPE html>
<html>
<head>
<title>show time</title>
<style>
#c #b{
background-color: red
}
.a{
background-image: url(D:/D/D.JPG);
}
</style>
</head>
<body>
<table border="2px" id="c">
<caption>征婚广告</caption>
<tr id="b">
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
</tr>
<tr class="a">
<td>王琛</td>
<td>49</td>
<td>壮汉</td>
</tr>
<tr class="a">
<td>某东</td>
<td>69</td>
<td>壮汉</td>
</tr>
</table>
</body>
</html>
忘却了!!!!