<var> - HTML(超文本标记语言) 编辑

HTML Variable元素(<var>)表示数学表达式或编程上下文中的变量名称。尽管该行为取决于浏览器,但通常使用当前字体的斜体形式显示。

概述

<var> 标签表示变量的名称,或者由用户提供的值。

允许内容Phrasing content
标签闭合Both start and end tags are required
允许的父级元素Any element that accepts phrasing content.
规范元素HTML, "The var element"

属性

本元素仅支持 全局属性.

DOM 接口

本元素支持 HTMLElement 接口

提示: Gecko 1.9.2 开始, Firefox支持本元素使用 HTMLSpanElement 接口。

默认样式

var {
  font-style: italic;
}

Overriding the default style

BCD tables only load in the browser

<p> A simple equation: <var>x</var> = <var>y</var> + 2 </p>

A simple equation: x = y + 2

The output:

Using CSS, you can override the default style for the <var> element. In this example, variable names are rendered using bold Courier if it's available, otherwise it falls back to the default monospace font.

CSS

var {
  font: bold 15px "Courier", "Courier New", monospace;
}

HTML

<p>The variables <var>minSpeed</var> and <var>maxSpeed</var> control
   the minimum and maximum speed of the apparatus in revolutions
   per minute (RPM).</p>

This HTML uses <var> to enclose the names of two variables.

Result

SpecificationStatusComment
HTML Living Standard
<var>
Living Standard
HTML5
<var>
Recommendation

The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:116 次

字数:4328

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文