File size: 260 Bytes
556657e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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;
}
"""
|