HTML鏈接大小屬性用於指定視覺媒體圖標的大小,並且僅在rel =” icon”時有效。這是一個隻讀屬性。
用法:
<link sizes="HeightxWidth | any">
屬性值
- HeightxWidth它用於指定鏈接圖標的一個或多個大小。高度和寬度的值由“x”或“X”分隔。
For Example:
- <link rel =” icon” href =“ geeks.png” size =“ 16×16” type =” image /png“>(1個尺寸)
- <link rel =” icon” href =“ sudo.png” size =” 16×16 32×32” type =“ image /png”>(2種尺寸)
- 任何:指定圖標可縮放(如SVG圖像)。
例子:<link rel =” icon” href =“ icon.svg” sizes =“ any” type =” image /svg + xml“>(任意大小)。例:
<!DOCTYPE html> <html> <head> <link id="linkid" rel="stylesheet" type="text/css" href="styles.css" sizes="16*16"> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>HTML <Link> sizes Attribute</h2> </body> </html>
輸出:
支持的瀏覽器:HTML shape屬性不支持任何瀏覽器。
相關用法
- HTML sizes屬性用法及代碼示例
- HTML Link sizes用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
- HTML name屬性用法及代碼示例
- HTML src屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML max屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <link> sizes Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。