<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>skx表格</title>
<style>
table{background:#4068b0 center repeat; font-size:14px; color:#FFF;}
.button{ color:#F3F;}
.text1{background:#999 center repeat-x; width:220px;}
.text2{background:#999 center repeat-x; width:295px;}
.text3{background:#999 center repeat-x; width:220px;}
.text4{background:#999 center repeat-x; width:60px;}
</style>
</head>

<body>
<table width="770"  border="1" bordercolor="#666666" cellspacing="0" cellpadding="0" >
<tr>
<td width="770"height="22" colspan="4" ><center>理事长信息</center></td>
</tr>
<tr>
<td  width="130" height="22">登记证号:</td>
<td  width="220" height="22"><input class="text1" name="text"  placeholder="name" ></td>
<td  width="125" height="22">届数:</td>
<td  width="295" height="22"><input class="text2" name="text"></td>
</tr>
<tr>
<td  width="130" height="22">姓名:</td>
<td  width="220" height="22"><input class="text3" name="text"></td>
<td  width="125" height="22">级别:</td>
<td  width="295" height="22">
         <select>
          <option value="lsz">理事长</option>
          <option value="ds">董事</option>
          </select>
          </td>
</tr>
<tr>
<td  width="130" height="22">姓别:</td>
<td  width="220" height="22">
           <select>
          <option value="men">男</option>
          <option value="women">女</option>
          </select></td>
<td  width="125" height="22">出生年月:</td>
<td  width="295" height="22">
        <input class="text4" name="text"  placeholder="1954-2" >例如:1954年2月,填1954-2
          </td>
</tr>
<tr>
<td  width="150" height="22">单位:</td>
<td  width="150" height="22"><input class="text" name="text"></td>
<td  width="150" height="22">职务:</td>
<td  width="150" height="22"><input class="text" name="text"></td>
</tr>
<tr>
<td  width="150" height="22">职称:</td>
<td  width="150" height="22"><input class="text" name="text"></td>
<td  width="150" height="22">学历:</td>
<td  width="150" height="22"><input class="text" name="text"></td>
</tr>
<tr>
<td  width="150" height="22">专业:</td>
<td  width="150" height="22"><input class="text" name="text"></td>
<td  width="150" height="22">电话:</td>
<td  width="150" height="22"><input class="text" name="text"></td>
</tr>
<tr>
<td  width="150" height="22">党政领导兼职</td>
<td  width="150" height="22">
           <select>
          <option value="yes">是</option>
          <option value="no">否</option>
          </select>
          </td>
<td  width="150" height="22">上报时间</td>
<td  width="150" height="22"><input placeholder="2015-12-19" class="text" name="text"></td>
</tr>
<tr>
<td  width="150" height="22"><input type="button"  class="button" value="提交"></td>
<td  width="150" height="22"><input type="button"  class="button" value="重置"></td>
<td  width="460" height="22" colspan="2">注:确保数据无误后在提交!</td>
</tr>
</table>
</body>
</html>

table tricks的更多相关文章

  1. LinuxAsm#Chapter10

    Dividing and Conquering Book: Assembly Language step by step Complexity kills programs. Remember to ...

  2. php Hash Table(四) Hash Table添加和更新元素

    HashTable添加和更新的函数: 有4个主要的函数用于插入和更新HashTable的数据: int zend_hash_add(HashTable *ht, char *arKey, uint n ...

  3. 【翻译】C# Tips & Tricks: Weak References - When and How to Use Them

    原文:C# Tips & Tricks: Weak References - When and How to Use Them Sometimes you have an object whi ...

  4. Advanced Configuration Tricks

    Advanced Configuration Tricks Configuration of zend-mvc applications happens in several steps: Initi ...

  5. Responsive Table 利用@media

    html <table> <thead> <tr> <th>First Name</th> <th>Last Name</ ...

  6. Must Know Tips/Tricks in Deep Neural Networks

    Must Know Tips/Tricks in Deep Neural Networks (by Xiu-Shen Wei)   Deep Neural Networks, especially C ...

  7. Tips and Tricks for Debugging in chrome

    Tips and Tricks for Debugging in chrome Pretty print On sources panel ,clicking on the {} on the bot ...

  8. Must Know Tips/Tricks in Deep Neural Networks (by Xiu-Shen Wei)

    http://lamda.nju.edu.cn/weixs/project/CNNTricks/CNNTricks.html Deep Neural Networks, especially Conv ...

  9. HTML布局四剑客-Flex,Grid,Table,Float

    前言 在HTML布局中有很多的选择,同一种表现方式可以使用不同的方法来实现.下面来对四种最常见的布局方式进行阐述和解释,它们分别是Float,Table,Grid和Flex Float 第一位出场的就 ...

随机推荐

  1. stack, deque 和 queue的对比

    stack, deque 和 queue这三个c++的STL的数据结构很类似但又各有不同. stack是堆栈,没有迭代器,特点是后进先出.用push()将元素压入栈中,top()返回栈顶元素,pop( ...

  2. 通过程序校验xml文档学习笔记

    校验xml文档,可以通过程序来校验,利用一段js代码即可. 各行代码的含义已经写出,运行这个html文件,检验如下xml代码: 结果如下: 如果xml文档出现错误: 结果如下: 其中,obj.asyn ...

  3. Export-XLSX PowerShell generate real Excel XLSX files without Excel and COM

    http://gallery.technet.microsoft.com/scriptcenter/Export-XLSX-PowerShell-f2f0c035

  4. HDU 5773 最长上升子序列

    题意 给出一个序列 问它的最长严格上升子序列多长 这个序列中的0可以被替代为任何数 n的范围给出了1e5 所以平常的O(n*n)lis不能用了 在kuangbin的模板里有O(nlogn)的模板 套上 ...

  5. Android shell 命令总结

    Package Manage(PM) pm list packages [FILTER] 查看已安装的应用包 -f 显示关联的apk文件 -s 只在系统应用中搜索Filter -3 只在第三方应用中搜 ...

  6. [ZZ] cbuffer和tbuffer

    http://blog.chinaunix.net/uid-20235103-id-2578297.html Shader Model 4支持的新东西,通过打包数据可以获得更好的性能.原文转发:Sha ...

  7. 【Spec for GS5】不要嘲笑程序员不懂烂漫

    // // main.cpp // 生日快乐 // // Created by wasdns on 16/11/21. // Copyright © 2016年 wasdns. All rights ...

  8. Linux 执行ThinkPHP 文件的计划任务

    执行例如 http://192.168.1.32/index.php?s=/Home/Cron/yue 这样的 url 的计划任务 方式① */ * * * * curl http://192.168 ...

  9. Grand Theft Auto V 图形研究(2)

    原文链接 http://www.adriancourreges.com/blog/2015/11/02/gta-v-graphics-study-part-2/   Level of Detail 如 ...

  10. oracle case when 语句

    原文:http://www.cnblogs.com/eshizhan/archive/2012/04/06/2435493.html CASE WHEN 表达式有两种形式 简单Case函数 CASE ...