CSS - acimut

Descripción

La propiedad azimut describe la posición de una fuente de sonido a lo largo del eje horizontal del entorno del oyente.

Valores posibles

  • angle
  • left-side
  • far-left
  • left
  • center-left
  • center
  • center-right
  • right
  • far-right
  • right-side
  • far-right
  • detrás del centro

Los valores de acimut deben mostrarse de la siguiente manera

Se aplica a

Todos los elementos HTML.

Sintaxis DOM

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

Ejemplo

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

Producirá el siguiente resultado: