Jump to content
  • 0

Прижатый подвал


mayse
 Share

Question

5 answers to this question

Recommended Posts

  • 0

Форум - служит для дискуссий. Давайте из примеров которые я нашел, выберем более работоспособный вариант.

Вариант №1

html


<html>
<body>
<div id="content">
content
</div>
<div id="footer">
footer
</div>
</body>
</html>

css



html, body {
margin:0;
padding:0;
width:100%;
height:100%;
}
#content {
position: relative;
min-height: 100%;
}
* html #content {
height: 100%;
}
#footer {
position: relative;
margin-top: -2.5em;
height: 2.5em;
}

Вариант №2

html


<html>
<body>
<div id="header">
header
</div>
<div id="content">
content
</div>
<div id="footer">
footer
</div>
</body>
</html>

css


html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
min-height: 100%;
height: auto !important;
height: 100%;
position: relative;
}
#header {
height: 3em;
width: 100%;
}
#content {
padding-bottom: 2.5em;
}
#footer {
height: 2.5em;
width: 100%;
position: absolute;
bottom: 0;
}

Link to comment
Share on other sites

  • 0
Давайте из примеров которые я нашел, выберем более работоспособный вариант.

Что значит "более работоспособный"? Либо работает, либо нет. Либо вас устраивает, либо нет. Случаи разные бывают.

Ну вот мне, например, нравится вариант №2, вам от этого легче?

Link to comment
Share on other sites

  • 0
Давайте из примеров которые я нашел, выберем более работоспособный вариант.

Что значит "более работоспособный"? Либо работает, либо нет. Либо вас устраивает, либо нет. Случаи разные бывают.

Ну вот мне, например, нравится вариант №2, вам от этого легче?

Все отлично, спасибо!

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