El atributo xml:lang en SVG se usa para indicar el idioma principal que se usa en los contenidos y atributos que contienen contenido de texto en el sitio web. Está permitido en todos los dialectos XML ya que es un atributo universal. Todos los elementos utilizan este atributo.
Sintaxis:
xml:lang = "language-tag"
Valores de atributo: el atributo acepta valores como se mencionó anteriormente y se describe a continuación:
- language-tag: este valor indica el idioma utilizado para el elemento dado. El idioma se define de acuerdo con la especificación BCP 47.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <h1 style="color: green; margin-left: 80px;"> GeeksforGeeks </h1> <svg viewBox="-5 -20 800 100" xmlns="http://www.w3.org/2000/svg"> <text xml:lang="en-US"> It is a Computer Science portal. </text> </svg> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <h1 style="color: green; margin-left: 100px; font-size: 30px;"> GeeksforGeeks </h1> <svg viewBox="20 -10 200 100" xmlns="http://www.w3.org/2000/svg"> <text xml:lang="ar"> مرحبا </text> </svg> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por thacker_shahid y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA