Gunlaug Sørtun wrote:
> Subscriptions wrote:
>> http://www.buckeyeinstitute.org/podcast/
>>
>> After loading the page, simply press CTRL-A and you'll see the ghost 
>> rectangles on the left and on the bottom. They match up with the menu 
>> div on the left and the content div on the bottom.
>
> Note that 'top: ?? / left: ??' on an element with 'position: relative'
> doesn't really move the element - it _offsets_ it visually from its
> original position _without removing_ its _space_ from the original
> position.
>
> If you don't want to leave any "ghosts" behind, then you may try
> _moving_ those elements with 'margin-top: ?? / margin-left: ??' instead,
> as 'margins' move the element _away from_ the original space - not just
> offset them visually.
>
> Using 'position: absolute' with 'top: ?? / left: ??' is another
> alternative that won't leave any "ghosts".

Thank you! You taught me something valuable today. I usually avoid using 
position:, so I was not familiar with everything here.

The answer came from using your suggestion to you position: absolute, 
and once I realized that the containing block needed to be positioned 
relatively, everything snapped together.

So thank you, and how much do I owe you? ;-)

Peter
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to