HTML | sizes Attribute

The HTML sizes Attribute is used to specify the sizes of the icon for visual media and it only works when rel=”icon”. It is a read-only property.

Uses:
It can be used in <link>, <source> and <img> element.

Syntax:

<link sizes="HeightxWidth"> 

Example:




<!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>w3wiki</h1>
    <h2>HTML <Link> sizes Attribute</h2>
</body>
  
</html>


Output:

Supported Browsers: The browsers supported by HTML sizes Attribute are listed below:

  • Google Chrome Not supported
  • Internet Explorer Not supported
  • Firefox Not supported
  • Apple Safari Not supported
  • Opera Not supported

Contact Us