冻结表头

在线预览地址

冻结表头_第1张图片
table.gif

源码:

/*---html---*/
书名 ISBN 作者 出版社 版次 出版日期 定价
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
我只想一个人住在你心里 9787112157709 田纪春 等 中国建筑工业出版社 311 2016-03 220.0
/*---scss---*/
* {
  box-sizing: border-box;
}

$ff_ms: "Microsoft Yahei";
$bgc_ff: #fff;
$bdc_db: #dbdbdb;

.text-overflow {
  overflow: hidden;
  white-space: nowrap;

  text-overflow: ellipsis;
}
body {
  margin: 0;
}
.form_data {
  width: 80%;
  margin: 100px auto;
  background-color: $bgc_ff;
}
table {
  width: 100%;
  min-width: 100%;
  font-size: 12px;

  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}

/* -------- user-style -------- */
.tab_tb {
  max-height: 240px;
}
.tab_tit,
.tab_tb {
  padding: 0 10px;
  overflow: hidden;
  overflow-y: scroll;
  col:nth-type(1) {
    width: 250px;
  }
}
tr {
  border-bottom: 1px solid $bdc_db;
}
th,
td {
  text-align: center;
  padding: 16px 8px;

  word-break: break-all;
  span {
    display: block;

    @extend .text-overflow;
  }
}

你可能感兴趣的:(冻结表头)