--- title: 行内元素 slug: Web/HTML/Inline_elements tags: - HTML - 'HTML:元素参考' - HTML:元素参考 - 初学者 translation_of: Web/HTML/Inline_elements ---
HTML (超文本标记语言) 元素大多数都是行内元素或块级元素。一个行内元素只占据它对应标签的边框所包含的空间。下面这个例子说明了行内元素的作用范围:
<p>This <span>span</span> is an inline element; its background has been colored to display both the beginning and end of the inline element's influence</p>
span { background-color: #8ABB55; }
{{ EmbedLiveSample('Inline_example') }}
下面的元素都是行内元素: