gpt4 book ai didi

jekyll - Jekyll Rouge 中的垂直滚动条

转载 作者:行者123 更新时间:2023-12-04 03:20:42 25 4
gpt4 key购买 nike

无论如何要在 Jekyll 中为非常长的代码添加垂直滚动条?我尝试在 _syntax.scss 中添加一个 Height 属性,但没有成功。我使用的语法荧光笔是胭脂,我使用的主题在这里:https://github.com/mmistakes/hpstr-jekyll-theme

最佳答案

是的,请确保将此 CSS 添加到您的主题中:

pre.highlight {
max-height: 200px; /* Change to your desired max height */
overflow-y: scroll;
}

更新。
使用这里提供的 OP URL 是我所做的:

查看定义类高亮的位置并将其添加到其声明的末尾:
.highlight {
[...]
border: 1px solid #dbdbdb;
background-color: #272822;
border-radius: 3px;

/** This part **/
max-height: 300px;
overflow-y: auto;
}

结果:
After new CSS

关于jekyll - Jekyll Rouge 中的垂直滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38486498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com