此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。
<span>:内容跨越元素
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
<span>HTML 元素是一个通用的行级容器,本身不具备特殊含义。它可被用于对元素进行编组,以便于添加样式(通过使用class 或id 属性),或共享属性值(例如lang 属性)。该元素仅应在无其他合适语义元素时使用。<span> 与<div> 元素非常相似,但是<div> 是块级元素,而<span> 是一个行级元素。
In this article
尝试一下
<p> Add the <span>basil</span>, <span>pine nuts</span> and <span>garlic</span> to a blender and blend into a paste.</p><p> Gradually add the <span>olive oil</span> while running the blender slowly.</p>span.ingredient { color: #f00;}属性
这个元素只包含全局属性。
示例
>示例 1
HTML
html
<p><span>一些文本</span></p>结果
示例 2
HTML
html
<li> <span> <a href="portfolio.html">查看我的作品集</a> </span></li>CSS
css
li span { background: gold;}结果
技术概要
规范
| Specification |
|---|
| HTML> # the-span-element> |
浏览器兼容性
参见
- HTML
<div>元素