代码示例:(标识:cssref_default_img)
<!DOCTYPE html>
<html>
<head>
<style>
/* 默认的 CSS 值 */
img {
  display: inline-block;
}
</style>
</head>
<body>

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

<p>Some text <img src="/static/demo/images/smiley.gif" alt="Smiley face" width="42" height="42"> some text.</p>

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

<p>Some text <img src="/static/demo/images/smiley.gif" alt="Smiley face" width="42" height="42" style="display:block;"> some text.</p>

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