Jump to content
  • 0

Верстка фона


Faradey99
 Share

Question

Подскажите пожалуйста, как верстать такой фон?

a6fa6a7c1b16t.jpg

Сам я додумался только до такого: верхний фон - один блок, нижний фон - второй блок. Родительскому блоку (в данном случае <body>) задаю position:relative, а верхнему и нижнему фону задаю pozition:absolute и z-index:-1.

В коде вот так:

<!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></title>
<style type="text/css">
* {margin:0;padding:0}
body {background:#F5F5F5;position:relative}
div.top-bg, div.bottom-bg {height:60px;position:absolute;width:100%;z-index:-1}
div.top-bg {background:url('top-bg.gif') repeat-x top left}
div.bottom-bg {background:url('bottom-bg.gif') repeat-x bottom left}
</style>
</head>

<body>
<div class="top-bg"></div>
<div class="bottom-bg"></div>
</body>
</html>

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Два градиента выделяете в два отдельных рисунка, устанавливаете как фон к боди (если вас устраивает html 5 то можно сразу оба если не устраивает то придётся разобраться со вложенным дивом) и задаёте им repeat-x. Так же необходимо указать цвет фона в вашем случае #f5f5f5;

Edited by CEBEP
Link to comment
Share on other sites

  • 0

Или все содержимое body обернуть в ещё один блок, которому задать нижний фон?

<!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></title>
<style type="text/css">
* {margin:0;padding:0}
body {background:url('top-bg.gif') repeat-x top left #F5F5F5}
div.bottom-bg {background:url('bottom-bg.gif') repeat-x bottom left}
div.wrapper {
background:#FAFAFA;
margin:0 auto;
max-width:1280px;
min-width:980px
}
</style>
</head>

<body>
<div class="bottom-bg">
<div class="wrapper">
....
</div>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0

<!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></title>
<style type="text/css">
* {margin:0;padding:0}
body
{
background:#ccdae3 url('bottom-bg.jpg') repeat-x bottom;
}
div.bg
{
background:url('top-bg.jpg') repeat-x;
min-height:300px;
}
</style>
</head>

<body>
<div class="bg">
Если надо чтобы нверняка градиент был ниже можно сделать что-то вроде подвала чисто под фон или поставить min-height побольше или дать себе труд напузырить побольше контента
</div>
</body>
</html>

P.S. Убедитесь что у вас есть рисунки с указанными у меня в коде именами чтобы всё корректно отобразилось

Link to comment
Share on other sites

  • 0

Поэтому я и спрашивал про position:absolute и z-index:-1, наверное я неправильно сформулировал вопрос, правильнее будет спросить стоит ли его здесь использовать или есть способ получше?

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