当我添加超过 4 位数字的行号时,它的行被从代码框中切出。
当我使用background-color: #eee;
all 时效果很好,但不适用于白色background-color: #fff;
。
如何修复从代码框中切出的行号?
如何将所有线条背景更改为白色?
PS白色背景必须带有行号:)
它现在是如何工作的(在图片上:linenums:320
只有在 Safari 中使用 3 位数的数字切片很糟糕,对于 Chrome,它从 4 位数的数字开始切片)。但也许我们可以赚取一些利润或其他东西。
pre.prettyprint {
background-color: #fff;
}
li.L0, li.L1, li.L2, li.L3, li.L4,
li.L5, li.L6, li.L7, li.L8, li.L9 {
list-style-type: decimal;
}
<pre class="prettyprint linenums:3320">
def celsius_from_fahrenheit(temp):
"""
Convert temperature value from Fahrenheit to Celsius.
"""
return (temp - 32)*5.0 / 9.0
def fahrenheit_from_celsius(temp_fahrenheit):
"""
Convert temperature value from Celsius to Fahrenheit.
"""
return (temp_fahrenheit*9 + 160)
</pre>
这是您可以检查其工作方式的示例。 https://jsfiddle.net/rwjbdayu/7/