发布网友 发布时间:2022-04-19 23:17
共2个回答
懂视网 时间:2022-04-20 03:38
这篇文章给大家介绍的内容是关于HTML5属性:margin属性的用法实例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> p{ width: 100px; height: 100px; background-color: red; /* 外边距 */ margin-top: 30px; margin-left: 100px; margin-right: 100px; margin-bottom: 100px; /* 连写 */ margin: 40px; margin: 0 auto; /* 内边距 pandding */ padding: 30px; } </style> </head> <body> <p>p第一个</p> <p>p第二个</p> </body> </html>
运行效果如下:
相关推荐:
HTML5属性:form表单属性的用法实例
HTML5中div标签的实例代码
热心网友 时间:2022-04-20 00:46
本例演示如何将所有的边距属性设置于一个声明中。 <html><head><styletype=text/css>p.margin{margin:50px100px75px100px}</style></head><body><p>这个段落没有指定外边距。</p><p class=margin>这个段落带有指定的外边距。这个段落带有指定的外边距。这个段落带有指定的外边距。这个段落带有指定的外边距。这个段落带有指定的外边距。</p><p>这个段落没有指定外边距。</p></body></html>