Carey【胭脂扣】

Email发送表格模板php定时报表表格模板

本文转自:http://blog.csdn.net/nightelve/article/details/7957726/

  1. 单像素边框CSS表格
    这是一个很常用的表格样式。

源代码:

Info Header 1Info Header 2Info Header 3
Text 1AText 1BText 1C
Text 2AText 2BText 2C
  1. 带背景图的CSS样式表格
    和上面差不多,不过每个格子里多了背景图。

cell-blue.jpg

cell-grey.jpg

  1. 下载上面两张图,命名为cell-blue.jpg和cell-grey.jpg

  2. 拷贝下面的代码到你想要的地方,记得修改图片url

Info Header 1Info Header 2Info Header 3
Text 1AText 1BText 1C
Text 2AText 2BText 2C
  1. 自动换整行颜色的CSS样式表格(需要用到JS)
    这个CSS样式表格自动切换每一行的颜色,在我们需要频繁更新一个大表格的时候很有用。

代码:

Info Header 1Info Header 2Info Header 3
Text 1AText 1BText 1C
Text 2AText 2BText 2C
Text 3AText 3BText 3C
Text 4AText 4BText 4C
Text 5AText 5BText 5C
  1. 鼠标悬停高亮的CSS样式表格 (需要JS)
    纯CSS显示表格高亮在IE中显示有问题,所以这边使用了JS来做高亮(由于csdn博客限制了js的使用,我会在近期将博客迁移放到自己的web主机上)。

有一点要小心的是,不要定义格子的背景色。

Info Header 1Info Header 2Info Header 3
Item 1AItem 1BItem 1C
Item 2AItem 2BItem 2C
Item 3AItem 3BItem 3C
Item 4AItem 4BItem 4C
Item 5AItem 5BItem 5C

最常见的几种CSS样式表格都在这了,希望对大家有帮助

例如:

$msg = '

            <!-- Table goes in the document BODY -->
            <table class="hovertable">
            <tr>
                <th> 序列号 </th>
                <th> 开始日期 </th>
                <th> 结束日期 </th>
                <th> 商机数 </th>
                <th> 新商机数 </th>
                <th> 已联系 </th>
                <th> 号码有效 </th>
                <th> 需求有效 </th>
                <th> 已成单 </th>
                <th> 号码有效率 </th>
                <th> 需求有效率 </th>
                <th> 成单率 </th>
                <th> 新商机占比 </th>
                <th> 联系率 </th>
            </tr>
            <tr onmouseover="this.style.backgroundColor=\'#ffff66\';" onmouseout="this.style.backgroundColor=\'#d4e3e5\';">
             <td>'. $data['id'].'</td>'.
            '<td>'. date('Y年m月d日', $data['start_time']).'</td>'.
            '<td>'. date('Y年m月d日', $data['end_time']).'</td>'.
            '<td>'. $data['buss_num'].'</td>'.
            '<td>'. $data['newbuss_num'].'</td>'.
            '<td>'. $data['yilianxi_num'].'</td>'.
            '<td>'. $data['is_link_num'].'</td>'.
            '<td>'. $data['is_need_num'].'</td>'.
            '<td>'. $data['order_num'].'%</td>'.
            '<td>'. $data['is_link_per'].'%</td>'.
            '<td>'. $data['is_need_per'].'%</td>'.
            '<td>'. $data['order_per'].'%</td>'.
            '<td>'. $data['newbuss_per'].'%</td>'.
            '<td>'. $data['lianxi_per'].'%</td>'.
            '</tr>
            </table>';
posted @ 2017-04-19 14:32  胭脂筘  阅读(639)  评论(0编辑  收藏  举报