在博客上?
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要做的是将 CSS 背景添加到<pre>.
<pre>
这样做可以吗?
pre{ background-color: EBECE4; }
还是我需要多做一点?我尝试这样,但我没有工作。
是的,你可以,但把颜色用“#”
pre{ background-color: #EBECE4; }
差不多好了: