代码示例:(标识:cssref_default_code)
<!DOCTYPE html>
<html>
<head>
<style>
/* 默认的 CSS 值 */
code {
  font-family: monospace;
}
</style>
</head>
<body>

<p>默认情况下,code 元素会这样显示:</p>

<code>A piece of computer code</code>

<p>自定义的 code 元素(更改 font-family):</p>

<code style="font-family:Impact;">A piece of computer code</code>

</body>
</html>
运行结果: