x
 
<!DOCTYPE html>
<html>
<head>
<style>
/* 默认的 CSS 值 */
cite {
  font-style: italic;
}
</style>
</head>
<body>
<p>默认情况下,cite 元素会这样显示:</p>
<p><cite>The Scream</cite> by Edward Munch.</p>
<p>自定义的 cite 元素:</p>
<p><cite style="font-style:normal;">The Scream</cite> by Edward Munch. </p>
</body>
</html>