x
 
<!DOCTYPE html>
<html>
<head>
<style>
/* 默认的 CSS 值 */
small {
  font-size: smaller;
}
</style>
</head>
<body>
<p>默认情况下,small 元素会这样显示:</p>
<small>Some smaller text</small>
<p>自定义的 small 元素(更改 font-size):</p>
<small style="font-size:8px;">Some smaller text</small>
</body>
</html>