html 简单的table样式

html 简单的table样式效果预览:代码:素材图片:cell-blue.jpgcell-greyjpg

大家好,又见面了,我是你们的朋友全栈君。

效果预览:

<span role="heading" aria-level="2">html 简单的table样式

代码:

 1 <!DOCTYPE html>  2 <html>  3 <head>  4 <meta charset="utf-8">  5 <title>html 简单的table样式</title>  6 <style type="text/css">  7 /* gridtable */  8  table.gridtable {  9  font-family: verdana,arial,sans-serif;  10  font-size:11px;  11  color:#333333;  12  border-width: 1px;  13  border-color: #666666;  14  border-collapse: collapse;  15 }  16  table.gridtable th {  17  border-width: 1px;  18  padding: 8px;  19  border-style: solid;  20  border-color: #666666;  21  background-color: #dedede;  22 }  23  table.gridtable td {  24  border-width: 1px;  25  padding: 8px;  26  border-style: solid;  27  border-color: #666666;  28  background-color: #ffffff;  29 }  30 /* /gridtable */  31  32 /* imagetable */  33  table.imagetable {  34  font-family: verdana,arial,sans-serif;  35  font-size:11px;  36  color:#333333;  37  border-width: 1px;  38  border-color: #999999;  39  border-collapse: collapse;  40 }  41  table.imagetable th {  42  background:#b5cfd2 url('cell-blue.jpg');  43  border-width: 1px;  44  padding: 8px;  45  border-style: solid;  46  border-color: #999999;  47 }  48  table.imagetable td {  49  background:#dcddc0 url('cell-grey.jpg');  50  border-width: 1px;  51  padding: 8px;  52  border-style: solid;  53  border-color: #999999;  54 }  55 /* /imagetable */  56 /* altrowstable */  57  58  table.altrowstable {  59  font-family: verdana,arial,sans-serif;  60  font-size:11px;  61  color:#333333;  62  border-width: 1px;  63  border-color: #a9c6c9;  64  border-collapse: collapse;  65 }  66  table.altrowstable th {  67  border-width: 1px;  68  padding: 8px;  69  border-style: solid;  70  border-color: #a9c6c9;  71 }  72  table.altrowstable td {  73  border-width: 1px;  74  padding: 8px;  75  border-style: solid;  76  border-color: #a9c6c9;  77 }  78  .oddrowcolor{  79  background-color:#d4e3e5;  80 }  81  .evenrowcolor{  82  background-color:#c3dde0;  83 }  84 /* /altrowstable */  85  86 /* hovertable */  87  table.hovertable {  88  font-family: verdana,arial,sans-serif;  89  font-size:11px;  90  color:#333333;  91  border-width: 1px;  92  border-color: #999999;  93  border-collapse: collapse;  94 }  95  table.hovertable th {  96  background-color:#c3dde0;  97  border-width: 1px;  98  padding: 8px;  99  border-style: solid; 100  border-color: #a9c6c9; 101 } 102  table.hovertable tr { 103  background-color:#d4e3e5; 104 } 105  table.hovertable td { 106  border-width: 1px; 107  padding: 8px; 108  border-style: solid; 109  border-color: #a9c6c9; 110 } 111 /* /hovertable */ 112 113 </style> 114 </head> 115 <body> 116 117 <h2>table样式1:单像素边框CSS表格</h2> 118 <table class="gridtable"> 119 <tr> 120 <th>Info Header 1</th> 121 <th>Info Header 2</th> 122 <th>Info Header 3</th> 123 </tr> 124 <tr> 125 <td>Text 1A</td><td>Text 1B</td><td>Text 1C</td> 126 </tr> 127 <tr> 128 <td>Text 2A</td><td>Text 2B</td><td>Text 2C</td> 129 </tr> 130 </table> 131 132 <h2>table样式2:带背景图的CSS样式表格</h2> 133 <table class="imagetable"> 134 <tr> 135 <th>Info Header 1</th> 136 <th>Info Header 2</th> 137 <th>Info Header 3</th> 138 </tr> 139 <tr> 140 <td>Text 1A</td><td>Text 1B</td><td>Text 1C</td> 141 </tr> 142 <tr> 143 <td>Text 2A</td><td>Text 2B</td><td>Text 2C</td> 144 </tr> 145 </table> 146 147 <h2>table样式3:自动换整行颜色的CSS样式表格(需要用到JS)</h2> 148 <table class="altrowstable" id="alternatecolor"> 149 <tr> 150 <th>Info Header 1</th><th>Info Header 2</th><th>Info Header 3</th> 151 </tr> 152 <tr> 153 <td>Text 1A</td><td>Text 1B</td><td>Text 1C</td> 154 </tr> 155 <tr> 156 <td>Text 2A</td><td>Text 2B</td><td>Text 2C</td> 157 </tr> 158 </tr> 159 <tr> 160 <td>Text 3A</td><td>Text 3B</td><td>Text 3C</td> 161 </tr> 162 <tr> 163 <td>Text 4A</td><td>Text 4B</td><td>Text 4C</td> 164 </tr> 165 <tr> 166 <td>Text 5A</td><td>Text 5B</td><td>Text 5C</td> 167 </tr> 168 </table> 169 170 171 <h2>table样式4:鼠标悬停高亮的CSS样式表格 (需要JS)</h2> 172 <table class="hovertable"> 173 <tr> 174 <th>Info Header 1</th><th>Info Header 2</th><th>Info Header 3</th> 175 </tr> 176 <tr onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="this.style.backgroundColor='#d4e3e5';"> 177 <td>Item 1A</td><td>Item 1B</td><td>Item 1C</td> 178 </tr> 179 <tr onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="this.style.backgroundColor='#d4e3e5';"> 180 <td>Item 2A</td><td>Item 2B</td><td>Item 2C</td> 181 </tr> 182 <tr onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="this.style.backgroundColor='#d4e3e5';"> 183 <td>Item 3A</td><td>Item 3B</td><td>Item 3C</td> 184 </tr> 185 <tr onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="this.style.backgroundColor='#d4e3e5';"> 186 <td>Item 4A</td><td>Item 4B</td><td>Item 4C</td> 187 </tr> 188 <tr onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="this.style.backgroundColor='#d4e3e5';"> 189 <td>Item 5A</td><td>Item 5B</td><td>Item 5C</td> 190 </tr> 191 </table> 192 193 <script type="text/javascript"> 194 function altRows(id){ 195 if(document.getElementsByTagName){ 196 197 var table = document.getElementById(id); 198 var rows = table.getElementsByTagName("tr"); 199 200 for(i = 0; i < rows.length; i++){ 201 if(i % 2 == 0){ 202  rows[i].className = "evenrowcolor"; 203  }else{ 204  rows[i].className = "oddrowcolor"; 205  } 206  } 207  } 208  } 209 210  window.onload=function(){ 211  altRows('alternatecolor'); 212  } 213 </script> 214 </body> 215 </html>

素材图片:

<span role="heading" aria-level="2">html 简单的table样式cell-blue.jpg

<span role="heading" aria-level="2">html 简单的table样式cell-greyjpg

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/155752.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

  • 电信光猫改桥接还在苦苦激活成功教程超级密码吗?

    电信光猫改桥接还在苦苦激活成功教程超级密码吗?电信光猫路由改桥接,不同的地区有不通的方法。比较幸运的地区和终端,有通用的超级密码。但是不幸的地区,就需要通过激活成功教程这个超级密码。我就属于比较不幸的地区,遇到不幸的终端:天翼网关TEWA-708G。然后按照网上大神的激活成功教程方法:先是普通用户登录,然后通过备份的方式,将备份文件考出,再通过电脑上的网页源码查看软件找到超级用户的密码。里面当然也有宽带的用户名和密码。通过多方努力,我成功了。然后开心的准备给家里买个新的路由器,准备换上。这中间大概隔了一两周的时间。悲剧发生了。。。。。。光猫的版本升级了,这个漏洞被电信

  • 欧姆龙plc编程入门视频教程_plc三菱编程入门基础知识

    欧姆龙plc编程入门视频教程_plc三菱编程入门基础知识plc编程入门视频教程http://i.youku.com/u/UNDQzNjIxMjAw/videos

  • eclipse代码补全、代码提示及防空格自动补全

    eclipse代码补全、代码提示及防空格自动补全最近学了下eclipse编写java代码时可以自动提示并且解决了空格自动补全的苦恼问题,现在会了这个感觉很好,决定给大家分享下。打开eclipse依次点击Window–&gt;Perferences–&gt;Java–&gt;Editor–&gt;ContentAssist,  在【AutoactivationtriggersforJava:】选项后的文本框中会看…

  • C++-Windows消息循环GetMessage/TranslateMessage/DispatchMessage[通俗易懂]

    C++-Windows消息循环GetMessage/TranslateMessage/DispatchMessage[通俗易懂]1.windows消息循环if(GetMessage(&msg,NULL,0,0)){TranslateMessage(&msg);//消息转化DispatchMessage(&msg);//消息派遣.把TranslateMessage转换的消息发送到窗口的消息处理函数,此函数在窗口注册时已经指定}执行过程:消息循环调用G…

  • 【收藏向】模拟电子技术超强知识点总结 20小时不挂科「建议收藏」

    【收藏向】模拟电子技术超强知识点总结 20小时不挂科「建议收藏」模电真的有难度的一门课,一定要好好学…用的教材是华科康华光版,其他版本教材也可参考,内容是差不多的。话不多说直接上思维导图干货(后有思维导图高清原图链接)1绪论2运算放大器3二极管及其基本电路4场效应管及其放大电路5双极结型三极管及其放大电路三种组态总结看不清,给个特写发现虽然csdn上传的是原图,但是显示的图片不是特别清晰,在此贴出B站知乎地址,第五章之后的内容都在上面,还可以查看原图————————————————————B站专栏地址(可以点击查看原图)htt

  • Redis 持久化是如何做的? RDB和AOF对比分析

    Redis 持久化是如何做的? RDB和AOF对比分析

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号