CSS - azimuth



Description

The azimuth property describes the position of a sound source along the horizontal axis of the listener's environment.

Possible Values

  • angle
  • left-side
  • far-left
  • left
  • center-left
  • center
  • center-right
  • right
  • far-right
  • right-side
  • far-right
  • behind center

Azimuth values should be shown as follows

azimuth

Applies to

All the HTML elements.

DOM Syntax

object.style.azimuth = "Any value defined above";

Example

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

Advertisements