English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Manual de Referência do HTML

大全 de Tags do HTML

Propriedade value do progresso do HTML

A propriedade value do progresso é um número flutuante, usada para especificar o quanto de uma tarefa foi concluída.

 HTML <progress> tag

Exemplos online

正在下载:

<!DOCTYPE html>
<html>
<head>
<title>HTML: <progress> value propriedade - Base Tutorial Website(oldtoolbag.com)/title>
</head>
<body>
Downloading progress:
<progress value="22" max="100">
</progress>
</body>
</html>
Test and see ‹/›

Browser compatibility

IEFirefoxOperaChromeSafari

Internet Explorer 10Firefox, Opera, Chrome and Safari 6 supports the value attribute.

Note:Internet Explorer 9 and previous versions do not support the value attribute of the <progress> tag.

Definition and usage

The value attribute specifies how much of a task has been completed.

HTML 4.01 with HTML5difference

The <progress> tag is an HTML5 of the new tag.

Syntax

<progress value="number">

Attribute value

ValueDescription
numberA floating-point number used to specify how much of a task has been completed.
 HTML <progress> tag