HTML标签
<!-->
<!DOCTYPE>
<a>
<abbr>
<acronym>
<address>
<applet>
<area>
<article>
<aside>
<audio>
<b>
<base>
<basefont>
<bdi>
<bdo>
<big>
<blockquote>
<body>
<br>
<button>
<canvas>
<caption>
<center>
<cite>
<code>
<col>
<colgroup>
<command>
<datalist>
<dd>
<del>
<details>
<dfn>
<dialog>
<dir>
<div>
<dl>
<dt>
<em>
<embed>
<fieldset>
<figcaption>
<figure>
<font>
<footer>
<form>
<frame>
<frameset>
<head>
<header>
<hgroup>
<h1> - <h6>
<hr>
<i>
<iframe>
<img>
<input>
<ins>
<kbd>
<keygen>
<label>
<legend>
<li>
<link>
<map>
<mark>
<menu>
<meta>
<meter>
<nav>
<noframes>
<noscript>
<object>
<ol>
<optgroup>
<option>
<output>
<p>
<param>
<pre>
<html>
<progress>
<q>
<rp>
<rt>
<ruby>
<s>
<samp>
<script>
<section>
<select>
<small>
<source>
<span>
<strike>
<strong>
<style>
<sub>
<summary>
<sup>
<table>
<tbody>
<td>
<textarea>
<tfoot>
<th>
<thead>
<time>
<title>
<tr>
<track>
<tt>
<u>
<ul>
<var>
<video>
<wbr>
sizes
HTML <link> sizes 属性
实例
带有指定尺寸的图标:
<link rel="icon" href="demo_icon.gif" type="image/gif" sizes="16x16">
浏览器支持
目前几乎没有主流浏览器支持 sizes 属性。
定义和用法
sizes 属性规定视觉媒体图标的尺寸。
只有当被链接资源是图标时 (rel="icon"),才能使用该属性。
HTML 4.01 与 HTML5之间的差异
sizes 属性是 HTML5 中的新属性。
语法
<link sizes="HeightxWidth|any">
属性值
值 | 描述 |
---|---|
HeightxWidth |
为被链接的图标规定一个或多个尺寸。 高度和宽度之间由一个 "x" 或 "X" 分隔。 实例s:
|
any |
规定图标是可伸缩的(比如 SVG 图像)。
实例:
|