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
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!