fix(curriculum): note Safari audio volume behavior (#65543)

This commit is contained in:
Viraj Jadhav
2026-02-02 12:44:41 +05:30
committed by GitHub
parent 4f29ac70ac
commit 5da8fdea0f
@@ -34,7 +34,9 @@ Press play in the preview window to hear one of Quincy Larson's songs. To hear a
::: :::
The `controls` attribute enables users to manage audio playback, including adjusting volume, and pausing, or resuming playback. The `controls` attribute is a boolean attribute that can be added to an element to enable built-in playback controls. If omitted, no controls will be shown. The `controls` attribute enables users to manage audio playback, including pausing or resuming playback. The `controls` attribute is a boolean attribute that can be added to an element to enable built-in playback controls. If omitted, no controls will be shown.
Note: Some browsers, such as Safari, may not display a volume control by default even when the `controls` attribute is present.
Apart from the `src` and `controls` attributes, there are several other attributes that enhance the functionality of the `audio` element. The `loop` attribute is a boolean attribute that makes the audio replay continuously. Apart from the `src` and `controls` attributes, there are several other attributes that enhance the functionality of the `audio` element. The `loop` attribute is a boolean attribute that makes the audio replay continuously.