The volume property is used in CSS and certain HTML elements. This property refers to the median volume of the current voice. Pitch and inflection variations may vary well above and below this value. The default minimum and maximum values (0/100) should be controllable by the user.
Values
inherit- Explicitly sets the value of this property to that of the parent.silent- No sound at all. The time that would have been taken to aurally render the element is still taken, but no sound is made. Any specifiedpauseproperties before/after the element are also rendered. This behavior is different than thespeakproperty being set tonone.x-soft- Same as0.soft- Same as25.medium- Same as50.loud- Same as75.x-loud- Same as100.<number>- A number between0and100.0represents the minimum audible volume level (not the same effect assilent) and100corresponds to the maximum comfortable volume level.<percentage>- This measure is relative to the inherited value for thevolumeproperty, and is clipped to the range0to100.
HTML example:
<body style="volume:medium;"> Body content. </body>
CSS example:
body {
volume:medium;
}