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如何让导航栏变透明
在css中,可以通过opacity属性来让导航栏变透明,只需要给导航栏元素添加“opacity: 透明度值;”样式即可;...
CSS
3个月前 (09-20) 206 -
css 怎么去除a标签的手形
css去除a标签的手形的方法:1、创建一个html示例文件;2、设置一个a标签;3、给a标签添加一个css属性为“cur...
CSS
3个月前 (09-20) 156 -
css里怎样设置字体大小和字体颜色
在css中,可以使用“font-size”和color属性设置字体大小和字体颜色,只需要给字体元素添加“{font-si...
CSS
3个月前 (09-20) 175 -
css如何固定导航栏
在css中,可以使用position属性固定导航栏;只需要给导航栏元素添加“position: fixed;”样式进行固...
CSS
3个月前 (09-20) 143 -
css边框变圆角边框怎么写
写法:1、给边框添加“border-radius:圆角值;”样式统一设置圆角大小;2、添加“border-top-lef...
CSS
3个月前 (09-20) 137
最新文章