En este artículo, discutiremos la propiedad que especifica el relleno correcto de un elemento.
La propiedad margin-right en CSS se usa para establecer el margen derecho de un elemento. Establece el área de margen en el lado derecho del elemento. También se permiten valores negativos. El valor predeterminado de la propiedad margin-right es cero.
Sintaxis:
margin-right: length|auto|initial|inherit;
El valor de la propiedad:
- length : Esta propiedad se utiliza para establecer un valor fijo definido en px, cm, pt, etc. Se permite el valor negativo y el valor predeterminado es 0px.
- auto : Esta propiedad se usa cuando se desea y la determina el navegador.
- initial : establece el valor del margen derecho en su valor predeterminado.
- heredar : esta propiedad se hereda de su padre
Ejemplo 1: En este ejemplo, demostraremos el margen derecho con el atributo de longitud .
HTML
<!DOCTYPE html> <html> <head> <title> margin-right property </title> <!-- margin-right property --> <style> h1 { margin-right: 100px; border:1px solid black; color: green; } h2 { margin-right:250px; border:1px solid black; } </style> </head> <body style = "text-align:center"> <h1>GeeksforGeeks</h1> <h2>margin-right property</h2> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, demostraremos el margen derecho con el atributo automático .
HTML
<!DOCTYPE html> <html> <head> <title> margin-right property</title> <!-- margin-right property --> <style> h1 { margin-right:auto; border:1px solid black; color: green; } h2 { margin-right:auto; border:1px solid black; } </style> </head> <body style="text-align:center"> <h1>GeeksforGeeks</h1> <h2>margin-right property</h2> </body> </html>
Producción:
Ejemplo 3: En este ejemplo, demostraremos el margen derecho con el atributo inicial .
HTML
<!DOCTYPE html> <html> <head> <title> margin-right property</title> <!-- margin-right property --> <style> h1 { margin-right: initial; border:1px solid black; color:green; } h2 { margin-right:initial; border:1px solid black; } </style> </head> <body style="text-align:center"> <h1>GeeksforGeeks</h1> <h2>margin-right property</h2> </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