border-collapse: collapse与单元格边框透明度实例页面

回到相关文章 »

代码:

CSS代码:
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.table th {
  background-color: #f0f0f0;
  text-align: left;
  font-weight: normal;
  font-style: normal;
}
.table td {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  cursor: default;
}
.table td,
.table th {
  padding: 10px;
}
                
JS代码:
var eleRange = window.addEventListener && document.querySelector("input[type=range]");
if (eleRange) {
    eleRange.onchange = function() {
        document.getElementsByTagName("tbody")[0].style.opacity = this.value / 100;
    }
}
                

效果:

姓名 协会 级别
小张 钓鱼协会 钓鱼九段
小张 钓鱼协会 钓鱼九段

设置tbody的透明度(0~1):