Jump to content
  • 0

Background-image к низу сайта


fofan
 Share

Question

Хочу сделать бекграунд сайта таким: к низу прикреплено изображение а все что выше него - текстура неба.

Но фоновое изображение категорически не хочет сползать вниз.

Вот код:


body {
background-color: #000000; /*цвет фона*/
background-image: url(/img/23.jpg); /*подключаем изображения*/
background-position: left bottom; /*позиция изображения, по центре екрана, прижатый к вверх*/
background-repeat: no-repeat; /*не повторять изображение ни по одной оси*/
color:#000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

html {
background: url(/img/23.jpg) left bottom no-repeat;
height: 100%;
}

А так?

а так он привязывается к низу, только не к самому низу а к низу той области которая отображается на экране, а когда прокручиваешь - белый фон

Link to comment
Share on other sites

  • 0

Тогда min-height: 100%;

Неуказывание высоты 100% для html и body может аукнуться в дальнейшем. Лучше сделать еще одну обертку и в ней прописать фон.

я пробовал и обертку, только в ней такая же проблема если не указывать высоту она будет делаться под высоту headera(высота указана только у него) а если 100% - будет 100% экрана

вот CSS:

body {
color:#000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
p {
margin: 10px 0 10px 0;
line-height: 140%;
text-align: justify;
}
h1 {
font-weight: normal;
font-size: 20px;
text-align: center;
padding-bottom: 5px;
}
h2 {
font-weight: normal;
text-align: center;
font-size: 17px;
padding-top: 10px;
padding-bottom: 5px;
}
h3 {
font-weight: normal;
font-size: 14px;
text-align: center;
font-weight: bold;
}

h4 {
text-align: center;
}

ol {
margin: 10px 0 10px 15px;
}

ul {
margin: 10px 0 10px 15px;
}

a {color: #0054a6;
}

a:hover {
color: #d20000;
}


.main {
margin: 0 auto;
width: 900px;
display: block;
}



.header {
height: 160px;
display: block;
background: url(/img/bg_head.jpg) no-repeat center ;
font-family: "Times New Roman";
}

Link to comment
Share on other sites

  • 0

ой, извиняюсь, что сбил с толку. Думал про одно, написал совсем другое. Не обертку надо конечно. А просто див в самый конец вставить с отрицательным маржином. Вот так сделать можно. Но если контента нет, то и фон будет не внизу. Т.е. в любом случае надо сделать "толкающий" див и задать ему высоту в 100%.

Link to comment
Share on other sites

  • 0

ой, извиняюсь, что сбил с толку. Думал про одно, написал совсем другое. Не обертку надо конечно. А просто див в самый конец вставить с отрицательным маржином. Вот так сделать можно. Но если контента нет, то и фон будет не внизу. Т.е. в любом случае надо сделать "толкающий" див и задать ему высоту в 100%.

спасибо огромное!

p.s. первый нормальный модератор, который реально помог...

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