标签:cell 服务 选中 art 表结构 服务器 必须 显示 位置
select、option
必须将select和option结合在一起使用,才能形成完整的下拉列表结构,缺一不可。
格式:
<select name="">
<option value=""></option>
<option></option>
<option></option>
</select>
注:在选中某一选项提交时,会将name值与选中选项的value形成键值对一并提交到服务器。
selected属性可以表示默认选中项,写法与checked相同
属性:
? 1、type:设置序号样式,取值:1、A、a、I、i
? 2、start:设置序号的起始位置
属性:
? 1、type:设置列表项的显示形式,取值:circle、disc、square
在列表中用于放置列表内容的标签
一个列表作为另一个列表的列表项
属性:
? 1、width:宽
? 2、height:高
? 3、border:边框粗细
? 4、cellspacing:单元格之间的距离
? 5、cellpadding:单元格的内边距
? 6、align:设置水平方向上的位置,left、center、right
? 7、valign:设置垂直方向上的位置,top、center、bottom
tr:表格行
td:单元格
注:单元格中的内容默认垂直居中
colspan:跨列
rowspan:跨行
举例:
<table border="1px" width="100px" height="100px" cellspacing="0">
<tr>
<td rowspan="2"></td>
<td colspan="2"></td>
</tr>
<tr>
<td></td>
<td rowspan="2"></td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</table>
标签:cell 服务 选中 art 表结构 服务器 必须 显示 位置
原文地址:https://www.cnblogs.com/demonycw/p/11329484.html