代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Css
】
漂亮的表格样式
作者:
/ 发布于
2016/7/4
/
847
<!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=gb2312" /> <script type="text/javascript" src="jquery-1.3.1.js"></script> <title>精美的表格样式</title> <style type="text/css"> <!-- body,table{ font-size:12px; } table{ table-layout:fixed; empty-cells:show; border-collapse: collapse; margin:0 auto; } td{ height:20px; } h1,h2,h3{ font-size:12px; margin:0; padding:0; } .title { background: #FFF; border: 1px solid #9DB3C5; padding: 1px; width:90%;margin:20px auto; } .title h1 { line-height: 31px; text-align:center; background: #2F589C url(th_bg2.gif); background-repeat: repeat-x; background-position: 0 0; color: #FFF; } .title th, .title td { border: 1px solid #CAD9EA; padding: 5px; } //样式一 table.tab_css_1{ border:1px solid #cad9ea; color:#666; } table.tab_css_1 th { background-image: url(th_bg1.gif); background-repeat::repeat-x; height:30px; } table.tab_css_1 td,table.tab_css_1 th{ border:1px solid #cad9ea; padding:0 1em 0; } table.tab_css_1 tr.tr_css{ background-color:#f5fafe; } //样式二 table.tab_css_2{ border:1px solid #9db3c5; color:#666; } table.tab_css_2 th { background-image: url(th_bg2.gif); background-repeat::repeat-x; height:30px; color:#fff; } table.tab_css_2 td{ border:1px dotted #cad9ea; padding:0 2px 0; } table.tab_css_2 th{ border:1px solid #a7d1fd; padding:0 2px 0; } table.tab_css_2 tr.tr_css{ background-color:#e8f3fd; } //样式三 table.tab_css_3{ border:1px solid #fc58a6; color:#720337; } table.tab_css_3 th { background-image: url(th_bg3.gif); background-repeat::repeat-x; height:30px; color:#35031b; } table.tab_css_3 td{ border:1px dashed #feb8d9; padding:0 1.5em 0; } table.tab_css_3 th{ border:1px solid #b9f9dc; padding:0 2px 0; } table.tab_css_3 tr.tr_css{ background-color:#fbd8e8; } .hover{ background-color: #53AB38; color: #fff; } --> </style> <script type="text/javascript"> function ApplyStyle(s){ document.getElementById("mytab").className=s.innerText; } $(function(){ addHover('mytab'); }); /** * 在鼠标悬停时突出显示行--jQuery处理表格 * * @tab table id */ function addHover(tab){ $('#'+tab+' tr').hover( function(){ $(this).find('td').addClass('hover'); }, function(){ $(this).find('td').removeClass('hover'); } ); } </script> </head> <body> <div class="title"> <h1>大家好,CSS与表格的结合示例</h1> <table><tr><td> 点击链接切换样式:<a href="javascript:;" onclick="ApplyStyle(this)">tab_css_1</a> <a href="javascript:;" onclick="ApplyStyle(this)">tab_css_2</a> <a href="javascript:;" onclick="ApplyStyle(this)">tab_css_3</a> </td></tr></table> </div> <table width="90%" id="mytab" border="1" class="tab_css_1"> <thead> <th width="10%">网名</th> <th width="30%">博客</th> <th width="20%">电邮</th> <th width="10%">QQ</th> </thead> <tr class="tr_css"> <td>Ruthless</td> <td>http://www.tieguanyin168.com/</td> <td>416501600@qq.com</td> <td>416501600</td> </tr> <tr> <td>Ruthless</td> <td>http://www.tieguanyin168.com/</td> <td>416501600@qq.com</td> <td>416501600</td> </tr> <tr class="tr_css"> <td>Ruthless</td> <td>http://www.tieguanyin168.com/</td> <td>416501600@qq.com</td> <td>416501600</td> </tr> <tr> <td>Ruthless</td> <td>http://www.tieguanyin168.com/</td> <td>416501600@qq.com</td> <td>416501600</td> </tr> <tr class="tr_css"> <td>Ruthless</td> <td>http://www.tieguanyin168.com/</td> <td>416501600@qq.com</td> <td>416501600</td> </tr> <tr> <td>Ruthless</td> <td>http://www.tieguanyin168.com/</td> <td>416501600@qq.com</td> <td>416501600</td> </tr> <tr class="tr_css"> <td>Ruthless</td> <td>http://www.tieguanyin168.com/</td> <td>416501600@qq.com</td> <td>416501600</td> </tr> <tr> <td>Ruthless</td> <td>http://www.tieguanyin168.com/</td> <td>416501600@qq.com</td> <td>416501600</td> </tr> </table> </body> </html>
试试其它关键字
表格样式
同语言下
.
前端PC-移动端CSS公共样式+HTML
.
手机端页面通用样式
.
H5页面通用头部设置
.
elect默认样式美化代码兼容移动端和pc端
.
按钮效果 css
.
唤醒app
.
放大效果
.
html5+css3实现上拉和下拉刷新
.
html上传图片后,在页面显示上传的图片
.
html5实现点击弹出图片
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
贡献的其它代码
Label
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3