margin-bottom

margin-bottom
CSS margin-bottom Property
The CSS margin-bottom property is used to create marginal space on the bottom side of elements.
CSS CODE EXAMPLE
<style type="text/css">
#myDiv {
    margin-bottom: 50px;
}
.divClass { background:#DFEFFF; border:#5BADFF 1px solid; padding:10px; }
</style>
<div class="divClass" id="myDiv">div content ...</div>
<div class="divClass">div content ...</div>
<div class="divClass">div content ...</div>
 
div content ...
div content ...
div content ...

Possible Values:

pixel amount •• percentage

0 Response to "margin-bottom"

Post a Comment