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

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

<em>Some emphasized text</em>

<p>自定义的 em 元素(更改 display):</p>

<em style="font-style:normal;">Some normal text</em>

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