Movatterモバイル変換


[0]ホーム

URL:


  1. 面向开发者的 Web 技术
  2. HTML(超文本标记语言)
  3. HTML 参考
  4. HTML 元素参考
  5. <span>

此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in EnglishAlways switch to English

<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 元素是一个通用的行级容器,本身不具备特殊含义。它可被用于对元素进行编组,以便于添加样式(通过使用classid 属性),或共享属性值(例如lang 属性)。该元素仅应在无其他合适语义元素时使用。<span><div> 元素非常相似,但是<div>块级元素,而<span> 是一个行级元素

尝试一下

<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;}

结果

技术概要

内容分类短语内容流式内容
允许的内容短语内容
标签省略不允许,开始标签和结束标签都不能省略。
允许的父元素 任何接受短语内容流式内容的元素。
隐含的 ARIA 角色没有对应的角色
允许的 ARIA 角色任意
DOM 接口HTMLSpanElement

规范

Specification
HTML
# the-span-element

浏览器兼容性

参见

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp