Are you using WYSIWYG, or code view?
Do you have any HTML and CSS experience?
Consider this:
HTML Code:
<!-- Eg. 1 -->
<div id="aaa">
<div id="bbb"> .. </div>
</div>
<!-- Eg. 2 -->
<div id="aaa"> .. </div>
<div id="bbb"> .. </div>
In Eg. 1, above, 'bbb' is a CHILD element of 'aaa'. 'bbb' will inherit its dimensions, margins and other properties from 'aaa'.
In Eg. 2, above, 'bbb' is a SIBLING element of 'aaa'. They both share the same parent, from which they will inherit the same properties, but 'bbb' is independent of 'aaa' and will not inherit properties.