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

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

<i>Some italic text</i>

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

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

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