想要将文章中的表格设置整行铺满,每列等分,在设置中的代码注入配置了代码,保存后刷新不生效
代码注入:
<style>
/* 表格容器自适应并隐藏横向滚动条 /
.tableWrapper .scrollWrapper {
width: 100%;
overflow-x: auto; / 移动端如果表格过宽,允许横向滑动 */
}
/* 核心样式:强制表格等分 */
.tableWrapper table {
width: 100% !important;
table-layout: fixed !important;
border-collapse: collapse;
}
/* 单元格样式:边框、内边距与垂直居中 /
.tableWrapper th,
.tableWrapper td {
border: 1px solid #e0e0e0;
padding: 12px 15px;
vertical-align: middle;
word-wrap: break-word; / 允许长单词换行 */
overflow-wrap: break-word;
}
/* 表头样式美化 */
.tableWrapper th {
background-color: #f8f9fa;
font-weight: bold;
text-align: center;
}
</style>