Latest web development tutorials

HTML audio muted property

HTML audio tag Reference Manual HTML <audio> tag

Examples

Audio is static ::

<audio controls muted>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
您的浏览器不支持 audio 元素。
</audio>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Internet Explorer 10, Firefox, Opera and Chrome support muted property.

Note: Internet Explorer 9 and earlier versions do not support the muted property.


Definition and Usage

muted property belonging to logical attributes.

As is set, then the provisions of the video output should be muted.


Differences between HTML 4.01 and HTML5

<Audio> attribute is HTML 5 new property.


Differences between HTML and XHTML

In XHTML, allowed attribute shorthand, muted attribute must be defined as <audio muted = "muted">.


grammar

<audio muted>


HTML audio tag Reference Manual HTML <audio> tag