你不知道的HTML標籤

meter

<meter>標籤定義度量衡。僅用於已知最大和最小值的度量。

1
2
<meter value="4" min="0" max="10">4 out of 10</meter>
<meter value="0.3">30%</meter>

效果如下
4 out of 10
30%

video

<video>標籤定義視頻,比如電影片段或其他視頻流。

1
2
3
4
5
<video width="320" height="240" controls>
<source src="catMovie.mp4" type="video/mp4">
<source src="catMovie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>

效果如下

progress

<progress>標籤定義運行中的任務進度(進程)。是HTML5中的新標籤。

1
<progress value="42" max="100"></progress>

效果如下

picture

<picture>允许我们在不同的设备上显示不同的图片,一般用于响应式。也是HTML5的新元素。

1
2
3
4
5
<picture>
<source media="(min-width: 650px)" srcset="images/logo.png">
<source media="(min-width: 450px)" srcset="images/logo.png">
<img src="zzz.jpg" style="width: auto;" alt="zzz">
</picture>

效果如下




wbr

<wbr>(Word Break Opportunity) 標籤規定在文本中的何處適合添加換行符。

1
2
3
<p>
Cats are the most majestic and <wbr>graceful<wbr>animals on the planet.
</p>

效果如下

Cats are the most majestic and gracefulanimals on the planet.

output

<output>標籤作為計算結果輸出顯示(比如執行腳本的輸出)。

1
2
3
4
5
<form oninput="totalWeight.value=parseInt(catAWeight.value)+parseInt(catBWeight.value)">
<input type="range" id="catAWeight" value="50">100
<input type="number" id="catBWeight" value="50">
<output name="totalWeight" for="catAWeight catBWeight"></output>
</form>

效果如下

100

blockquote

<blockquote>標籤定義摘自另一個源的塊引用。

1
2
3
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
</blockquote>

效果如下

For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.

time

1
2
<p> My cat wakes up at <time>11:00</time> each day.</p>
<p> I have a date with my cat on <time datetime="2019-12-25 20:00">Christmas</time>.</p>

效果如下

My cat wakes up at each day.

I have a date with my cat on .

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×