ホームページ >ウェブフロントエンド >CSSチュートリアル >CSS での margin-right プロパティの使用
margin-right 要素の右マージンを指定します。その値は、length、%、または auto です。次のコードを実行して右マージンを設定してみてください -
<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>
以上がCSS での margin-right プロパティの使用の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。