Home > Article > Web Front-end > What does muted mean in HTML
Introduction to HTML
Definition and usage
The muted attribute is a boolean (Boolean) attribute.
muted property sets or returns whether the audio/video should be muted (sound turned off).
Related recommendations: "HTML_HTML5 Knowledge"
Grammar
<video muted>
Examples
Turn off the sound of the video:
<video controls muted> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> 您的浏览器不支持 video 标签。 </video>
Browser support
##Internet Explorer 10 , Firefox, Opera, Chrome, and Safari 6 support the muted attribute. Note: Internet Explorer 9 and earlier IE versions do not support the muted attribute of
The above is the detailed content of What does muted mean in HTML. For more information, please follow other related articles on the PHP Chinese website!