ホームページ > 記事 > ウェブフロントエンド > CSS での margin プロパティの使用
margin 属性は、HTML 要素の周囲のスペースを定義します。負の値を使用してコンテンツを重ねることができます。宣言内でマージン プロパティを設定するための短縮プロパティを指定します。
次のコードを実行してマージンを設定してみてください -
<html> <head> </head> <body> <p style = "margin: 20px; border:2px solid yellow;"> All four margins will be 20px </p> <p style = "margin: 15px 4% -10px; border:2px solid red;"> Top margin will be 15px, left and right margin will be 4% of the total width of the document, bottom margin will be -10px </p> </body> </html>
以上がCSS での margin プロパティの使用の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。