DIV design/align

Discussion in 'CSS' started by redhits, Apr 28, 2008.

  1. #1
    I have a set of divs. ( a set = a div with many inside divs )


    how i can make them be like

    SET1
    SET2
    SET3


    Align one under each other, if i set them an width , some times, in some browser they do not align to well !
     
    redhits, Apr 28, 2008 IP
  2. MoT

    MoT Peon

    Messages:
    97
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #2
    add:
    clear: both;
    Code (markup):
    to SET1, SET2 and SET3 then they will go underneath :)
     
    MoT, Apr 28, 2008 IP
    redhits likes this.
  3. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #3
    If they're floated. It occurred to me that there might be some other positioning weirdness going on (like absolute positioning) since stacking on top of each other is what divs do naturally. Like MoT I assumed these were not stacking because they were floated... but if that's not the case, the clear won't do anything.
     
    Stomme poes, Apr 29, 2008 IP
    redhits likes this.
  4. ourblink

    ourblink Peon

    Messages:
    25
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    #wrap{
    background:#000;
    width:100px;
    margin:0 auto;
    }
    #setone{
    background:#33FFCC;
    width:100px;
    height:100px;
    position:absolute;
    top:0;
    }
    #settwo{
    background:#000000;
    height:100px;
    width:100px;
    position:absolute;
    top:100px;
    }
    ================
    De hTmL below :

    <body>
    <div id="wrap">
    <div id="setone"></div>
    <div id="settwo"></div>
    </div>
    </body>
     
    ourblink, Apr 29, 2008 IP
    redhits likes this.
  5. redhits

    redhits Notable Member

    Messages:
    3,023
    Likes Received:
    277
    Best Answers:
    0
    Trophy Points:
    255
    #5
    thank you so much guys!
     
    redhits, May 5, 2008 IP
  6. ourblink

    ourblink Peon

    Messages:
    25
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Your very welcome
     
    ourblink, May 6, 2008 IP