File size: 416 Bytes
31dc8dc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | /* 让代码块自动换行 */
.highlight pre {
white-space: pre-wrap;
word-wrap: break-word;
overflow-x: auto;
}
/* 限制最大宽度 */
.highlight {
max-width: 100%;
}
/* 代码块容器样式 */
.literal-block-wrapper {
max-width: 100%;
}
/* 额外的响应式支持 */
@media screen and (max-width: 768px) {
.highlight pre {
font-size: 0.9em;
line-height: 1.4;
}
} |