A good usage of HTML5's “progress” or “meter”?
问题 Say you have a survey with 10 pages (one question per page). At the top of each page, you include the text, "Question 2 of 10". Is this kind of a thing a good candidate for "progress" or "meter"? Semantically speaking, "progress" initially seems like the best fit. But, the more I read and look at examples, I think "meter" may be more appropriate. <meter max="10" value="1">Question 1 of 10</meter> <progress max="10" value="1">Question 1 of 10</progress> 回答1: According to the latest HTML5