34 lines
439 B
CSS
34 lines
439 B
CSS
/**
|
|
表头加黑居中
|
|
*/
|
|
.layui-table th{
|
|
text-align: center;
|
|
font-weight: bold;
|
|
font-size: medium;
|
|
}
|
|
|
|
/**
|
|
表格体 居中
|
|
*/
|
|
.layui-table tr{
|
|
text-align: center;
|
|
}
|
|
|
|
/**
|
|
横向滚动
|
|
*/
|
|
body .layui-table-box, body .layui-table-view {
|
|
|
|
}
|
|
::-webkit-scrollbar {
|
|
height: 15px !important;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #f2f2f2 !important;
|
|
}
|
|
|
|
body .layui-table-body {
|
|
overflow-x: auto !important;
|
|
}
|