El atributo rx define un radio en el eje x.
- <elipse>
- <rect>
Elementos que utilizan este atributo:
Sintaxis:
rx = "x-radius"
Valores de atributos:
- longitud: Longitud en la que queremos establecer el radio x.
- porcentaje: Porcentaje en el que queremos establecer el radio x.
Usaremos el atributo rx para establecer el radio en el eje x.
Ejemplo 1:
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg"> <ellipse cx="50" cy="50" rx="20" ry="20" fill="green" /> <ellipse cx="100" cy="50" rx="20" ry="25" fill="green" /> </svg> </body> </html>
Producción:
Ejemplo 2:
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg"> <rect x="20" y="120" width="60" height="60" rx="0" ry="0" fill="green" /> <rect x="120" y="120" width="60" height="60" rx="20" ry="20" fill="green" /> <rect x="220" y="120" width="60" height="60" rx="150" ry="10" fill="green" /> </svg> </body> </html>
Producción: