我正在尝试为我的个人网站设置一个“新闻和活动”框(如图所示)。你能给我指出一些相同的插件吗?谢谢。
问问题
34 次
1 回答
0
好的,我不会为此使用插件。
就这样写到文本编辑器
HTML
<div class="scroll-box">
<p>Your excerpt goes in here!</p>
</div>
在你的 CSS 中
.scroll-box {
background: #f4f4f4;
border: 2px solid rgba(0, 0, 0, 0.1);
height: 400px; /* maximum height of the box, feel free to change this! */
padding: 15px;
overflow-y: scroll;
}
如果您愿意,您可以制作自己的简码,这样您就不必将文本包装在 html 中<div class="scroll-box>
于 2018-03-03T15:00:27.757 回答