html 双色表格样式设计

来源:互联网 发布:清除mac上的个人信息 编辑:程序博客网 时间:2024/05/01 04:49
<!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>双色表格</title>
<script src="jquery-1.8.3.js" ></script>
 <style>
       th{
          background:#00676B;
          color:#FF4500;
          line-height:20px;
          height:30px;
        }
       td{
         padding 6px 11px;
         color: #FF0000;
         border:1px solid #95bce2;
         vertical-align:top;
         text-align: center;
       td * {
          padding 6px 11px;
       }
       tr.alt td{
          background: #ecf6fc;
       }
       tr.over td{
          background: #bcd4ec;
       }
    </style>
</head>
<body>
<center>
 <table width="364" border="1" cellspacing="0" cellpadding="0" class="table" >
 <thead>
    <th>测试1</th>
    <th>测试2</th>
    <th>测试3/th>

 </thead>

<tr>
    <td>测试数据1</td>
    <td>测试数据2</td>
    <td>测试数据3</td>
  </tr>

</table>
</center>

</body>
</html>

0 0
原创粉丝点击