Html 链接、图像、表格、表单、背景

来源:互联网 发布:lucene 与数据库结合 编辑:程序博客网 时间:2024/04/30 04:21

一、链接

1、href 另一个文档链接

2、name/id 文档内书签

3、target="_blank" 在新窗口打开

二、图像

1、不显示替换 alt=""

2、可点区域 area  shape/coords

三、表格 

1、边框 border

2、表头 th

3、空单元格 &nbsp

4、标题 caption

5、跨行 <th colspan="2">  跨列 <th rowspan="2">

6、列表 <ul><li>

7、边距 cellpadding 间距 cellspacing

四、表单

1、标签 input

2、输入类型 text/password/ radio/checkbox/submit/button

3、下拉 <select> <option>  selected="selected"

4、 文本区域 textarea rows  cols

5、带标题的框 <fieldset> <legend>

五、背景

1、bgcolor 

#000000      rgb(0,0,0)  black

2、background  

“1.jpg”  “http:www...../1.gif”

六、框架

1、cols="25%,25%,50%"

2、noresize="noresize" 不可调尺寸

3、<frameset ><frame src="">

4、内联 <iframe >

name="" target=""

七、列表 

1、ol type

A  a  I  i

2、ul type 

disc circle square

3 列表项 li

4 列表 dl

5 项目 dt

6 描述dd


0 0