body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
   }

   table {
    table-layout: fixed;
    width: 100%;
    /* 只有定义了表格的布局算法为fixed，下面td的定义才能起作用。 */
   }

   td {
    width: 100px;
    word-break: keep-all;
    /* 不换行 */
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 内容超出宽度时隐藏超出部分的内容 */
    text-overflow: ellipsis;
    /* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
   }

   table tr,
   table td,
   table th {
    padding: 1px 1px;
    font-size: 10px;
    font-family: Verdana;
    font-weight: bold;
    color: #000000;
   }
   .hidden {
    left: -200px;
    bottom: -100px;
    color: #F2F2F2;
   }