No... top and margin-top are different.
Top has to do with positioning of an element. For example, the following code will make the div appear 5px from the top of the page and 5px from the right of the page.
Code:
div {
position: absolute;
top: 5;
right: 5;
}
Margin has to do with the amount of space between two objects. So, if there are two divs next to each other, adding margin-right: 5px; to the div on the left will make the two divs appear 5px appart.
__________________
<?php if($Adsense_Revenue > 0): define('HAPPINES','100%'); else: define('HAPPINESS', '0%') endif; ?>
|