Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.38 KB

File metadata and controls

55 lines (38 loc) · 1.38 KB

Markdown

Sections

Lesser-Known HTML Attributes and Use Cases

autocomplete for <inmput>

<input type="text" name="name" autocomplete="on">

Allows the browser to suggest possible values for the input field.

srcset for <img>

<img src="image.jpg" srcset="image-low.jpg 480w, image-med.jpg 800w">

The srcset attribute allows you to provide a list of image sources for different screen resolutions.

download for <a>

<a href="https://example.com/file.zip" download="file.zip">Download</a>

Allows the browser to download the file when the link is clicked.

multiple for <select>

<select multiple>
  <option value="1">Option 1</option>
  <option value="2">Option 2</option>
  <option value="3">Option 3</option>
</select>

Allows the user to select multiple options from a dropdown.

autofocus for <input>

<input type="text" autofocus>

Sets the input field to be focused automatically when the page loads.