Open In App

HTML | sizes Attribute

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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>GeeksForGeeks</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

Last Updated : 27 Aug, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads