效果如图
正常效果
鼠标悬停效果
html代码
<div class="list-div" id="listDiv"> <table cellspacing='1' cellpadding='3'> <tr> <th>日志ID</th> <th>操作者</th> <th>操作日期</th> <th>ip地址</th> <th>操作记录</th> </tr> {foreach from=$log_list item=log} <tr > <td class="first-cell">{$log.log_id}</td> <td>{$log.user_name}</td> <td>{$log.log_time}</td> <td>{$log.ip_address}</td> <td>{$log.log_info}</td> </tr> {/foreach} </table> <div class="pages">{$multi}</div> </div> css代码 整行变色
.list-div tr:hover td{ background-color: #f6f8fb; } 前方图片 .list-div tr:hover td.first-cell{ background:#f6f9fb url(../images/common/list_table_hover_icon.png) repeat-y left top; }
352

被折叠的 条评论
为什么被折叠?



