Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why adding of left rule changes behavior so drastically? Is it possible to position relative to default position?

http://jsfiddle.net/suzancioc/drDn3/6/

HTML:

    <div class='level0'>
   <div class='level1'>
       Hello

   </div>
   <div class='level1'>
       Hello
       <div id='inner2'>inner2</div>
   </div>
       <div class='level1'>
       Hello
       <div id='inner3'>inner3</div>
   </div>

</div>

CSS:

.level0 {
   height:40px;
   width: 500px;
   background:red;
}
.level1 {
   float:left;
   margin:2px;
   border-style: solid;
   background: cyan;

}
#inner1 {
   position: absolute;
   background: green;
}

#inner2 {
   position: absolute;
   background: green;
    left:0px;
}

#inner3 {
   position: absolute;
   background: green;
}
share|improve this question
This jsFiddle shows the difference between float:left; on your level1 and having float:none;. jsfiddle.net/drDn3/11 – Douglas A. Crosby Nov 23 '12 at 21:15

1 Answer

In order to position absolute something you need to assign that div(in your case) to a relative positioned parent

.level1 {
   float:left;
   margin:2px;
   border-style: solid;
   background: cyan;
   position:relative;

}

Adding position:relative makes .level1 a sort of coordinate system for all elements inside of it.

Take a look at this JSFIDDLE

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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