Mnemosyne
2016-10-13 15:45
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>边距</title> <style type="text/css"> div{ width:200px; height:200px; border:1px solid red; text-align:center; } #box1{ margin-bottom:10px; } p{ margin-top:0px;/*如果p标签不设置margin,就不会贴在边线,是不是p标签有默认的一个margin值*/ line-height:200px; } a{ line-height:200px; } </style> </head> <body> <div id="box1"><p>box1</p></div> <div id="box2"><a>box2</a></div> </body> </html>
是的,默认值就是浏览器
初识HTML(5)+CSS(3)-升级版
1225297 学习 · 18230 问题
相似问题