HTML <progress> 최대 속성

❮ HTML <progress> 태그

예시

진행률 표시줄 표시:

<label for="file">Downloading progress:</label>
<progress id="file" value="32" max="100"> 32% </progress>

정의 및 사용

max속성은 작업에 필요한 총 작업량을 지정합니다.


브라우저 지원

표의 숫자는 속성을 완전히 지원하는 첫 번째 브라우저 버전을 지정합니다.

Attribute
max 8.0 10.0 16.0 6.0 11.0

통사론

<progress max="number">

속성 값

Value Description
number A floating point number that specifies how much work the task requires in total before it can be considered complete. Default value is 1.

❮ HTML <progress> 태그