Baseline Widely available
The sizes
property of the HTMLSourceElement
interface is a string representing a list of one or more sizes, representing sizes between breakpoints, to which the resource applies.
It reflects the sizes
attribute of the <source>
element.
A string.
Examples<source
id="el"
src="mediumVideo.mov"
type="video/quicktime"
sizes="(50em <= width <= 60px) 50em,
(30em <= width < 50em) 30em" />
const el = document.getElementById("el");
console.log(el.sizes); // Output: "(50em <= width <= 60px) 50em, (30em <= width < 50em) 30em"
el.sizes = "(50em <= width <= 60px) 100em, (30em <= width < 50em) 60em"; // Updates the sizes value
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4