<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title><style type="text/css">#menu {background-color:#ffff99;height:200px; float:left;width:100px;margin-top:0px;}h2 {margin-bottom:0px; font-size:14px;}#container{width:500px;}h1{margin-bottom:0px;text-decoration:0px;font-family:Georgia, "Times New Roman", Times, serif;font-size:40px;color:#90DA11;}#content{float:right;background-color:#6FF;width:400px;height:200px;}#footer{background-color:#6F3;clear:both;text-align:center;}p{line-height:0px;margin-top:5px;text-indent:20px;color:#000;font-family:Arial, Helvetica, sans-serif;font-weight:bolder;}#header{margin-bottom:0px;}</style></head><body><div id = "container"><div id="header"><h1>智慧教室</h1><p>Smart Classroom</p></div><div id="menu"><h2>Menu</h2><ul><li>HTML</li><li>CSS</li><li>JavaScript</li></ul></div><div id="content" ></div><div id="footer">Copyright W3School.com.cn</div></div></body></html>
2 回答
SMILET
TA贡献1796条经验 获得超4个赞
1 2 3 4 5 6 7 8 | p{ line-height:20px; margin:0; text-indent:20px; color:#000; font-family:Arial, Helvetica, sans-serif; font-weight:bolder; } |
<p>标签是带有默认样式的,这一点你必须要知道。
首先,你在<h1>标签下方使用了该标签,而后,你让P标签的line-height为零,这是不合理的,要知道,line-height表示你的这个标签中文字垂直占位,这个数字要合理,比如你这里,你可以使用20px;
而p标签还带有margin-top和margin-bottom的默认样式,你已经让p标签的margin-top为5px了,那么这个空隙,就是margin-bottom带来的。
所以,要让你的p标签没有那个所谓的空隙,就要加上margin-bottom:0;或者是在定义margin-top之前,定义margin:0;都可以。
P标签样式修改后为上面代码框中的样式。
- 2 回答
- 0 关注
- 684 浏览
添加回答
举报
0/150
提交
取消