Position Relative Help

MartyBoi

New Member
I am new to the CSS Scene, and am having a problem with trying to figure out if I should use Position Relevant in this case. Am I right to use Position Relative?

Thank you:D

HTML:
<!-- Styles CSS -->
#header-wrapper {
    Background-color: #000;
    width: auto;
}

#header {
   height: 155px;
   width: 810px;
   margin: 0 auto;
   position: relative; <!-- Is this correct usage ? -->
 }

<!-- HTML Mark Up -->

<div id="header-wrapper">
    <div id="Header"></div>
</div>
 
CSS position:relative is only meaningful if you wish to change the normal (static) position by adding left, right, top, or bottom offsets. See this description of the position property.
 
Top