Показать сообщение отдельно
  #2 (permalink)  
Старый 13.08.2010, 18:37
Аватар для e1f
e1f e1f вне форума
Профессор
Отправить личное сообщение для e1f Посмотреть профиль Найти все сообщения от e1f
 
Регистрация: 03.04.2009
Сообщений: 1,263

<!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>
Ответить с цитированием