表格单行悬浮聚焦效果代码

代码语言:html

所属分类:表格

代码描述:表格单行悬浮聚焦效果代码

代码标签: 聚焦 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">

  
  
  
<style>
body {
  font: normal medium/1.4 sans-serif;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 0.25rem;
  text-align: left;
  border: 1px solid #ccc;
}

td {
  transition: all 300ms;
}

tbody:hover td {
	color: transparent;
	text-shadow: 0 0 3px #aaa;
}

tbody:hover tr:hover td {
	color: #444;
	text-shadow: 0 1px 0 #fff;
}
</style>


</head>

<body  >
  <table class="zebra">
  <thead>
    <tr>
      <th>Last Name</th>
      <th>First Name</th>
      <th>Due</th>
    
    </tr>
  </thead>
  <tbody>
    <tr id='row'>
      <td>Smith</td>
      <td>John</td>
      <td>$50.00</td>
      
    </tr>
    <tr>
      <td>Bac.........完整代码请登录后点击上方下载按钮下载查看

网友评论0