HTML+CSS+ немного Javascript
От: Аноним  
Дата: 08.07.09 12:24
Оценка:
Есть HTML страница
<html>
  <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <style type="text/css">
body {
    margin: 10px auto;
    width: 560px;
    font: 75%/120% Arial, Helvetica, sans-serif;
}
.menu li {
    padding: 0;
    margin: 0 7px;
    float: left;
    position: relative;
    text-align: center;
}
.menu a {
    padding: 14px 10px;
    display: block;
    width: 144px;
    text-decoration: none;
    font-weight: bold;
    background: url(pictures/button1.gif) no-repeat center center;
}
.menu li em {
    background: url(pictures/hover1.png) no-repeat;
    width: 180px;
    height: 45px;
    position: absolute;
    top: -85px;
    left: -15px;
    text-align: center;
    padding: 20px 12px 10px;
    font-style: normal;
    z-index: 2;
    display: none;
}
</style>
</head>
<body>
<ul class="menu">
    <li>
        <a href="http://www.web.com">Item 1</a>
        <em>Hint for 1</em>
    </li>
    <li>
        <a href="http://best.com">Item 2</a>
        <em>Hint for 2</em>
    </li>
    <li>
        <a href="http://www.bad.com">Item 3</a>
        <em>Hint for 3</em>
    </li>
</ul>
</body>
</html>

подскажите как мне сделать чтобы эти Item-ы были в bootom (внизу) страницы .
как-то определяется же текущая высота документа или body чтобы после загрузки изменить расположение списка
 
Подождите ...
Wait...
Пока на собственное сообщение не было ответов, его можно удалить.