The azimuth property describes the position of a sound source along the horizontal axis of the listener's environment.
Azimuth values should be shown as follows
All the HTML elements.
object.style.azimuth = "Any value defined above";
<html> <head> <style type = "text/css"> h1 { azimuth: 70deg; } h3 { azimuth: behind left; } p { azimuth: left; } </style> </head> <body> <h1>This is header1 content</h1> <h3>This is header3 content</h3> <p>This is my paragraph content.</p> </body> </html>
It will produce the following result −