How to align divs inside a div vertically?

I have few divs inside a div. I need to align them vertically. How can I achieve this?

Comments

  • kmozzlerkmozzler Chicago
    edited February 2014

    Well, if you can't use a table, the best way is to just place a
    after each div. But I would suggest creating a table and putting each div inside a table row.

    <div id="outerDiv">
    <table>
        <tr><td><div id="div1"></div></td></tr>
        <tr><td><div id="div2"></div></td></tr>
        </table>
    </div>
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion