bgcolor 背景颜色,貌似不能跟background一起使用 background 背景图片 text 文本的颜色 link 超链接的颜色 vlink 访问过的超链接的颜色 alink 活动的超链接的颜色 leftmargin 左边距,是显示的内容的边距,不是整个页面和浏览器的边距 rightmargin 右边距,这四个边距的属性同上 topmargin 上边距 bottomargin 下边距
align 对齐方式,有left、right、center、justify
align 对齐方式,有left、right、center
width 水平线的宽度 size 水平线的粗细 color 水平线的颜色 align 水平线的对齐方式
<ul type="circle"> //若果这里1就会成有序的 <li>这是第1个</li> //disc 实心圆 <li>这是第2个</li> //circle 空心圆 <li type="square">这是第3个</li> <li>这是第4个</li> //square 实心方块 <li>这是第5个</li> <li>这是第6个</li> <li type="disc">这是第7个</li> <li>这是第8个</li> </ul> <ol type="A" start="4"> //如果这里用square就会成无序的 <li>这是第1个</li> <li>这是第2个</li> <li type="square">这是第3个</li> <li>这是第4个</li> <li>这是第5个</li> <li>这是第6个</li> <li type="disc">这是第7个</li> <li>这是第8个</li> </ol>
href 要去的地方 target 打开方式 _blank _self _parent _top title 鼠标经过是提示的文字 name 锚点 链接到锚点要添加# <a name="名字"></a> <a href="#名字">到第某个地方去地方</a>
src 图像的路径 witdh 宽度 height 高度 border 边框 alt 图片找不到时提示的文字
<table border="1" cellspacing="3" cellpadding="5" bordercolor="red" width="50" height="60"> <caption>标题</caption> <tr> <th>Header</th> <th>Header</th> <th bgcolor="red">Header</th> </tr> <tr bgcolor="red"> <th>Header</th> 表头单元格 <td>Header</td> <td>Header</td> </tr> </table> background 背景图片 bgcolor 背景颜色 cellspacing 单元格和单元格的距离 cellpadding 单元格和内容的距离
原文:http://blog.csdn.net/li_jun_09_05/article/details/44657339