Which HTML5 tags are better suited to represent amounts?

WBOY
Release: 2023-09-04 11:25:08
forward
1570 people have browsed it

Which HTML5 tags are better suited to represent amounts?

一个变量由 var 元素表示。这可以是编程或数学表达式中的实际变量,也可以是常量的标识符,函数参数的标识符,

取决于您想要实现的目标,但看来您的可能性是 -

  • 以微数据(例如产品定价)为例。

  • 如果你想强调价格,但不意味着它更重要,使用

  • 如果价格至关重要,例如整个明细收据的总费用,请使用样式。

  • 如果您需要一个元素来设计不同的定价,请将 与类一起使用。

如果用户想要在表格中显示财务信息,请确保它们位于标题为可访问性的列中。

<th scope="col">Income</th>
     or
<th scope="col">Price</th>
Copy after login

使用定义列表

HTML元素包含一组术语和描述的配对。该元素经常用于显示元数据或构建词汇表(键值对列表)

<dl> 
   <dt>Income:</dt> 
   <dd>1.200,00 $</dd> 
</dl>
Copy after login

数据的使用

数据元素内容的机器可读版本也以value属性表示。

当与微格式或微数据配对时,该元素既可以为数据处理器提供机器可读的值,也可以为在 Web 浏览器中呈现的人类可读的值提供支持。

<p>The Salary Is:
<data class="amount" value="18000.00">
$18000</data>.</p>
Copy after login

The above is the detailed content of Which HTML5 tags are better suited to represent amounts?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template