vote up 1 vote down star

Hi,

I want to float a div to the right at the top of my page. It contains a 50px square image, but currently it impacts on the layout of the top 50px on the page.

Currently its:

<div style="float: right;">
  ...
</div>

I tried z-index as I thought that would be the answer, but I couldn't get it going.

I know it's something simple I'm missing, but I just can't seem to nail it.

Thanks, Nath

flag

3 Answers

vote up 7 vote down check

What do you mean by impacts? Content will flow around a float. That's how they work.

if you want it to appear above your design, try setting:

z-index: 10;
position: absolute;
right: 0;
top: 0;

link|flag
Yeah the flow is what I meant by "impacts". That got it, thanks. :o) – Nath Nov 21 '08 at 11:46
Cool. It's nice to be helpful. – Richard Nov 21 '08 at 11:49
vote up 2 vote down

If you don't want the image to affect the layout at all (and float on top of other content) you can apply the following CSS to the image:

position:absolute;
right:0;
top:0;

If you want it to float at the right of a particular parent section, you can add position: relative to that section.

link|flag
There is no need to specify a unit when the value is zero. "right: 0;" works just the same as "right: 0pt;" or "right: 0px;". – Ola Tuvesson Nov 21 '08 at 11:45
Cheers — the perils of pasting from firebug! – EoghanM Nov 21 '08 at 15:37
vote up 0 vote down

Try setting its position to absolute. That takes it out of the flow of the document.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.