Maison >interface Web >tutoriel CSS >Utilisation de la propriété margin-right en CSS
margin-right spécifie la marge droite de l'élément. Sa valeur peut être length, %, ou auto. Vous pouvez essayer d'exécuter le code suivant pour définir la bonne marge -
<html> <head> </head> <body> <p style = "margin-right: 10px; border:2px solid red;"> This is a paragraph with a specified right margin </p> <p style = "margin-right: 10%; border:2px solid green;"> This is another paragraph with a specified right margin in percent </p> </body> </html>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!