源码网,源码论坛,源码之家,商业源码,游戏源码下载,discuz插件,棋牌源码下载,精品源码论坛

 找回密码
 立即注册
查看: 162|回复: 19

[CSS] CSS制作可输入内容的table表格

[复制链接]

7万

主题

861

回帖

32万

积分

论坛元老

Rank: 8Rank: 8

积分
329525
发表于 2012-12-13 11:20:12 | 显示全部楼层 |阅读模式
使用css制作可输入内容的表格,这样可以省略html的繁杂结构,需要的朋友可以了解下 效果图:
 

复制代码代码如下:
<form method="post">
<table class="formdata">
<caption>公司销售统计表 2004~2007</caption> /*标题*/
<tr>
<th></th> /*行标题*/
<th scope="col">2004</th>
<th scope="col">2005</th>
<th scope="col">2006</th>
<th scope="col">2007</th>
</tr>
<tr>
<th scope="row">硬盘(Hard Disk)</th> /*列标题*/
<td><input type="text" name="harddisk2004" id="harddisk2004"/></td>
<td><input type="text" name="harddisk2005" id="harddisk2005"/></td>
<td><input type="text" name="harddisk2006" id="harddisk2006"/></td>
<td><input type="text" name="harddisk2007" id="harddisk2007"/></td>
</tr>
<tr>
<th scope="row">主板(Mainboard)</th>
<td><input type="text" name="mainboard2004" id="mainboard2004"/></td>
<td><input type="text" name="mainboard2005" id="mainboard2005"/></td>
<td><input type="text" name="mainboard2006" id="mainboard2006"/></td>
<td><input type="text" name="mainboard2007" id="mainboard2007"/></td>
</tr>
<tr>
<th scope="row">内存条(Memory Disk)</th>
<td><input type="text" name="memory2004" id="memory2004"/></td>
<td><input type="text" name="memory2005" id="memory2005"/></td>
<td><input type="text" name="memory2006" id="memory2006"/></td>
<td><input type="text" name="memory2007" id="memory2007"/></td>
</tr>
<tr>
<th scope="row">机箱(Case)</th>
<td><input type="text" name="case2004" id="case2004"/></td>
<td><input type="text" name="case2005" id="case2005"/></td>
<td><input type="text" name="case2006" id="case2006"/></td>
<td><input type="text" name="case2007" id="case2007"/></td>
</tr>
<tr>
<th scope="row">电源(Power)</th>
<td><input type="text" name="power2004" id="power2004"/></td>
<td><input type="text" name="power2005" id="power2005"/></td>
<td><input type="text" name="power2006" id="power2006"/></td>
<td><input type="text" name="power2007" id="power2007"/></td>
</tr>
<tr>
<th scope="row">CPU风扇(CPU Fan)</th>
<td><input type="text" name="cpufan2004" id="cpufan2004"/></td>
<td><input type="text" name="cpufan2005" id="cpufan2005"/></td>
<td><input type="text" name="cpufan2006" id="cpufan2006"/></td>
<td><input type="text" name="cpufan2007" id="cpufan2007"/></td>
</tr>
<tr>
<th scope="row">总计(Total)</th>
<td><input type="text" name="total2004" id="total2004"/></td>
<td><input type="text" name="total2005" id="total2005"/></td>
<td><input type="text" name="total2006" id="total2006"/></td>
<td><input type="text" name="total2007" id="total2007"/></td>
</tr>
</table>
</form>

CSS代码:

复制代码代码如下:
<PRE class=css name="code">body {
}
table.formdata{
border:1px solid #5F6F7E;
border-collapse:collapse;
font-family:Arial;
}
table.formdata caption{ /*标题*/
text-align:left;
padding-bottom:6px;
}
table.formdata th{ /*行列标题*/
border:1px solid #5F6F7E;
background-color:#E2E2E2;
color:#000000;
text-align:left;
font-weight:normal;
padding:2px 8px 2px 6px;
margin:0px;
}
table.formdata td{ /*表格行*/
margin:0px;
padding:0px;
border:1px solid #ABABAB; /* 单元格边框 */
}
table.formdata input{ /*可输入区域样式*/
width:100px;
padding:1px 3px 1px 3px;
margin:0px;
border:none; /* 输入框不要边框 */
font-family:Arial;
}
</PRE>


<P></P>
<PRE></PRE>


<P></P>
回复

使用道具 举报

4

主题

2万

回帖

262

积分

中级会员

Rank: 3Rank: 3

积分
262
发表于 2022-8-28 23:54:47 | 显示全部楼层
老大你好你好好你好
回复 支持 反对

使用道具 举报

0

主题

1万

回帖

68

积分

注册会员

Rank: 2

积分
68
发表于 2022-9-18 06:47:23 | 显示全部楼层
谢谢下载来看看
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

69

积分

注册会员

Rank: 2

积分
69
发表于 2023-3-28 03:20:17 | 显示全部楼层
呵呵呵呵呵呵
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

55

积分

注册会员

Rank: 2

积分
55
发表于 2023-3-31 06:15:15 | 显示全部楼层
挺不错的东西
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2023-4-25 21:21:26 | 显示全部楼层
额风风风微风微风违法
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

319

积分

中级会员

Rank: 3Rank: 3

积分
319
发表于 2023-10-21 12:47:33 | 显示全部楼层
啦啦啦啦啦啦啦啦!
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

186

积分

注册会员

Rank: 2

积分
186
发表于 2023-10-22 15:46:11 | 显示全部楼层
啦啦啦啦啦德玛西亚
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2024-4-9 23:34:49 | 显示全部楼层
你们谁看了弄洒了可能
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

362

积分

中级会员

Rank: 3Rank: 3

积分
362
发表于 2024-5-2 18:20:21 | 显示全部楼层
还不错啊
回复 支持 反对

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

手机版|小黑屋|网站地图|源码论坛 ( 海外版 )

GMT+8, 2024-11-30 11:33 , Processed in 0.076216 second(s), 26 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表