【实例介绍】
css margin-bottom底部边界属性
margin-bottom属性设置元素的下外边距。
【基本语法】
margin-bottom:length
【语法介绍】
检索或设置对象底边的外延边距。
【实例代码】
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style type="text/css"> p.bottommargin {margin-bottom: 2cm} </style> </head> <body> <p>这个段落没有指定外边距。</p> <p class="bottommargin">这个段落带有指定的下外边距。</p> <p>这个段落没有指定外边距</p> </body> </html>
【代码分析】
在代码中,加粗代码是设置底部的外延边距,在浏览器中预览,效果如图所示。
【素材及源码下载】
请点击:底部边界属性css margin-bottom 下载本实例相关素材及源码
……