La propiedad de azimut indica la posición de un productor de sonido (fuente) sobre el eje horizontal del entorno del oyente. Los valores o posibles argumentos son: ángulo, izquierda, derecha, centro.
Sintaxis:
HTML
<style type="text/css"> html tag { azimuth: 70deg; } html tag { azimuth: behind left; } </style> <!--This part should be written in head tag -->
Implementación de código:
HTML
<!DOCTYPE html> <html> <head> <!-- h1 and h3 with azimuth property --> <style type="text/css"> h1 { azimuth: 70deg; } h3 { azimuth: behind left; } </style> </head> <body> <h1>geeks for geeks portal</h1> <h3>computer science</h3> <!-- Defining h1 and h3 tages with content --> </body> </html>
Producción:
HTML
<!DOCTYPE html> <html> <head> <!-- Defining azimuth property with azimuth by 180 degrees --> <style type="text/css"> p { azimuth: 180deg; } </style> </head> <body> <p>Computer php and java <p> <!-- paragraph tag --> </p> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por sravankumar8128 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA