runoops.com

参考手册 第49页

HTML textarea cols 属性

阅读(1582)

带有指定高度和宽度的文本区域: 实例 Run this code » <textarea rows="4" cols="50"> 在 runoops.com 您将学习如何制作一个网站。我们提供了所有 Web 开发免费教程。 &l...

HTML textarea autofocus 属性

阅读(1210)

一个自动获得焦点的文本区域: 实例 Run this code » <textarea autofocus> 在 runoops.com 你将学会如何制作网站。我们提供了基础的web技术教程。 </textarea>...

HTML td width 属性

阅读(1258)

两个带有预定义宽度的表格单元格: 实例 Run this code » <table border="1" width="100%"> <tr> <th>Month</th> <th&g...

HTML td valign 属性

阅读(1284)

带有不同垂直对齐单元格的 HTML 表格: 实例 Run this code » <table border="1" style="height:200px"> <tr> <th>Month</th...

HTML td scope 属性

阅读(1263)

下面的实例把两个 <th> 元素标识为列的表头,把两个 <th> 元素标识为行的表头: 实例 Run this code » <table border="1"> <tr> <th>...

HTML td rowspan 属性

阅读(1233)

下面的 HTML 表格中包含一个横跨两行的表格单元格: 实例 Run this code » <table border="1"> <tr> <th>Month</th> <th>...

HTML td nowrap 属性

阅读(1268)

带有 nowrap 属性的表格单元格: 实例 Run this code » <table border="1"> <tr> <th>Poem</th> <th>Poem</...

HTML td height 属性

阅读(1226)

两个带有预定义高度的表格单元格: 实例 Run this code » <table border="1"> <tr> <th>Month</th> <th>Savings<...

HTML td headers 属性

阅读(1241)

规定每个 <td> 元素相关联的 <th> 元素: 实例 Run this code » <table border="1"> <tr> <th id="name">Name<...

HTML td colspan 属性

阅读(1322)

下面的 HTML 表格中包含一个横跨两列的表格单元格: 实例 Run this code » <table border="1"> <tr> <th>Month</th> <th>...