当前位置: 代码迷 >> Web前端 >> margin-bottom的功用
  详细解决方案

margin-bottom的功用

热度:563   发布时间:2013-03-29 14:24:52.0
margin-bottom的作用

<html>
<head>
<style type="text/css">
p.bottommargin {margin-bottom: 3cm}
</style>
</head>

<body>
<p>这个段落没有指定外边距。</p>
<p class="bottommargin">这个段落带有指定的下外边距。</p>
<p>这个段落没有指定外边距。</p>
</body>

</html>