在 StackExchange 中更改代码的字体大小

Changing font size of code in StackExchange

是否可以通过更改字体大小或任何其他方式来减小或增大 StackExchange 帖子上的代码块({} 工具栏图标)?

抱歉,字体大小无法更改,但您可以将其设置为 BOLDITALICS 以强调。

通过用户脚本,您可以:

// ==UserScript==
// @name     Stack Exchange Code Formatting CSS
// @include  http://*.stackexchange.com/*
// @include  http://*.whosebug.com/*
// @include  http://*.serverfault.com/*
// @include  http://*.superuser.com/*
// @grant    GM_addStyle
// ==/UserScript==

GM_addStyle ( "code,pre { font-size:14px !important; white-space:pre-wrap }");

默认字体大小为 13px。将字体大小应用于代码是可行的。在我的示例中,我想对(前)文本进行自动换行,因此我通过将这两个属性应用于两者来简化它。

我想这比正常的要大一些。但仍然 非常 骇人听闻。并且可能不适用于多行块

enter code here

`code to highlight`
===================

如果需要,您可以使用直接 HTML 标签实现相同的效果,如下所示。可在此处找到允许的 HTML 标签列表:https://meta.stackexchange.com/questions/1777/what-html-tags-are-allowed-on-stack-exchange-sites

这是一个测试 多行代码</h1> <pre><h1> <code>this is a test of multiline code</code> </h1>