<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Inline-block</title>
        <style type="text/css">
            #wrapper {
                width: 100%;
                height: 50%;
                vertical-align: bottom;
                text-align: justify;
            }
            .bottom-column {
                display: inline-block;
                width: 33%;
            }
        </style>
        <script type="text/javascript">
            function add_text() {
                document
                    .getElementById('wrapper')
                    .childNodes[Math.floor(Math.random() * 3)]
                    .appendChild(document.createTextNode('Lorem ipsum dolor sit amet, consetetur sadipscing elitr'))
            }
        </script>
    </head>
    <body>
        <button onclick="add_text()">Add Text</button>
        <div id="wrapper"><div class="bottom-column"></div><div class="bottom-column"></div><div class="bottom-column"></div></div>
    </body>
</html>