如何在单个声明中设置 CSS 间距属性?
间距 属性定义 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>
广告