kevinpro
commit message
556657e
raw
history blame
260 Bytes
CUSTOM_CSS = """
/* Hides the final column */
table td:last-child,
table th:last-child {
display: none;
}
/* 控制第一列的宽度 */
table td:first-child,
table th:first-child {
max-width: 200px;
overflow: auto;
white-space: nowrap;
}
"""