Jump to content
  • 0

прижать слой к низу


Wol11
 Share

Question

15 answers to this question

Recommended Posts

  • 0

Слои не существуют в потоке документа, они сами по себе, один на другом - отсюда и название. Если же слой позиционирован релятивно, то размер будет считаться относительно родителя, если абсолютно - относительно окна браузера. Отсюда вывод - предыдущий слой не содержится в родительском слое, значит родителем для него будет сам документ. Задав ему высоту в 100% он растянется на весь экран, и либо будет перекрывать нижний слой, либо скрыватся под ним, зависит от z-index.

Link to comment
Share on other sites

  • 0

Выглядит вс? так:

<div id="menu">меню...</div>
<div class="text">некий тест... где-то на половину экрана.. </div>
<div class="bottomdiv">тут красивый рисунок, который должен находиться всегда по нижней границе окна браузера</div>

Ну и стили соответственно:

#menu {
float: left;
position: absolute;
}

div.text {
color: White;
font-family: Arial;
font-size: 14px;
float: right;
text-align: justify;
margin-left: 40px;
text-indent: 40px;
}

div.bottomdiv{
position: fixed;
bottom: 0px;
}

И вот не работает:)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy