Jump to content
  • 0

опять же высота min-height


white_kh
 Share

Question

Привет. Появилась задача сделать вокруг блока несколько фоновых изображений. Все получилось, но вот есть глюк, который я не знаю как исправить... если высота блока превышает 100%, то фоновые изображения остаются на месте, а контент вылазиет за их границы. Объясните с примером плз как решить данную задачу. Спасибо!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>test</title>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<style>

html, body {height:100%; margin:0; padding:0;}

#wrapper {width:80%; height:100%; margin: 0px auto; background:silver;}

#page {width:100%; height:100%;}

#t {background: url(http://4play.com.ua/img/t.jpg) top repeat-x; height:100%;}

#b {background: url(http://4play.com.ua/img/b.jpg) bottom repeat-x; height:100%;}

#l {background: url(http://4play.com.ua/img/l.jpg) left repeat-y; height:100%;}

#r {background: url(http://4play.com.ua/img/r.jpg) right repeat-y; height:100%;}

#tl {background: url(http://4play.com.ua/img/tl.jpg) top left no-repeat; height:100%;}

#tr {background: url(http://4play.com.ua/img/tr.jpg) top right no-repeat; height:100%;}

#bl {background: url(http://4play.com.ua/img/bl.jpg) bottom left no-repeat; height:100%;}

#br {background: url(http://4play.com.ua/img/br.jpg) bottom right no-repeat; height:100%;}

</style>

</head>

<body>

<div id="wrapper">

<div id="t">

<div id="b">

<div id="l">

<div id="r">

<div id="tl">

<div id="tr">

<div id="bl">

<div id="br">

<div id="page">

<div style="padding:80px 0px 0px 110px;">

content

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

</body>

</html>

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

Это не глюк, это вы так запрограммировали поведение страницы. Для #page и других блоков стоит определенная высота, так эта высота и будет сохранятся как указано, независимо от содержимого. Только IE по-своему понимает такой вариант... Но не о нем речь.

Вобщем, смотря что вы хотите, чтобы с контентом было... Если хотите полосу прокрутки то добавьте в #page overflow:auto; если хотите, чтобы лишний контент пропадал добавьте overflow:hidden; если хотите чтобы вся ваша система зависела от объема контента - уберите везде указание высоты, да и ширину указывать не надо, если она 100% и позиционирование блоков идет по-умолчанию.

Link to comment
Share on other sites

  • 0
Это не глюк, это вы так запрограммировали поведение страницы. Для #page и других блоков стоит определенная высота, так эта высота и будет сохранятся как указано, независимо от содержимого. Только IE по-своему понимает такой вариант... Но не о нем речь.

Вобщем, смотря что вы хотите, чтобы с контентом было... Если хотите полосу прокрутки то добавьте в #page overflow:auto; если хотите, чтобы лишний контент пропадал добавьте overflow:hidden; если хотите чтобы вся ваша система зависела от объема контента - уберите везде указание высоты, да и ширину указывать не надо, если она 100% и позиционирование блоков идет по-умолчанию.

Хотелось бы, чтобы минимальная высота была 100%. правда если высота контента превышает 100, то все становится бякой.

если добавить после "content" строку <div style="height:1500px; width:100px; background:red;"></div> . не могу понять почему page не меняет высоту

Link to comment
Share on other sites

  • 0

Проблема в том, что вы указываете блокам внутри body напрямую height: 100%, по этой причине и контент вылазит за пределы блока.

Нужно указывать для нормальных браузеров min-height вместо height.

Link to comment
Share on other sites

  • 0

Как вариант: LEFT BG - фоном для HTML, RIGHT BG - фоном для BODY { min-height: 100%; position: relative; }, верхнюю и нижнюю "строки" оформить отдельными дивами (контейнер с общим фоном и в нем два плавающих блока, левый и правый), и спозиционировать абсолютно соответственно к верхней и нижней границам body. А у основного контента body задать отступы со всех сторон на размеры соотв. фоновых картинок...

Link to comment
Share on other sites

  • 0

Да, там проблема с IE, вот немного корявое, но работающее решение:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
html, body {height:100%; margin:0; padding:0;}

#wrapper {position:relative; width:80%; *height:100%; min-height:100%; margin: 0px auto; background: url(http://4play.com.ua/img/l.jpg) left repeat-y silver;}
#page {padding: 80px 110px;}


#t {position:absolute; background: url(http://4play.com.ua/img/t.jpg) top repeat-x; top:0; height:71px; width:100%;}
#b {position:absolute; background: url(http://4play.com.ua/img/b.jpg) bottom repeat-x; bottom:0; height:71px; width:100%;}
#r {position:absolute; background: url(http://4play.com.ua/img/r.jpg) right repeat-y; right:0; height:100%; width:101px;}
#r1 {background: url(http://4play.com.ua/img/r.jpg) right repeat-y; height:100%; width:100%;}

#tl {position:absolute; background: url(http://4play.com.ua/img/tl.jpg) top left no-repeat; top:0; left:0; height:71px; width:101px;}
#tr {position:absolute; background: url(http://4play.com.ua/img/tr.jpg) top right no-repeat; top:0; right:0; height:71px; width:101px;}
#bl {position:absolute; background: url(http://4play.com.ua/img/bl.jpg) bottom left no-repeat; bottom:0; left:0; height:71px; width:101px;}
#br {position:absolute; background: url(http://4play.com.ua/img/br.jpg) bottom right no-repeat; bottom:0; right:0; height:71px; width:101px;}

</style>
</head>
<body>
<div id="wrapper">
<div id="r1">

<div id="t"></div>
<div id="b"></div>
<div id="r"></div>
<div id="tl"></div>
<div id="tr"></div>
<div id="bl"></div>
<div id="br"></div>

<div id="page">
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
</div>


</div>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0
Да, там проблема с IE, вот немного корявое, но работающее решение:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
html, body {height:100%; margin:0; padding:0;}

#wrapper {position:relative; width:80%; *height:100%; min-height:100%; margin: 0px auto; background: url(http://4play.com.ua/img/l.jpg) left repeat-y silver;}
#page {padding: 80px 110px;}


#t {position:absolute; background: url(http://4play.com.ua/img/t.jpg) top repeat-x; top:0; height:71px; width:100%;}
#b {position:absolute; background: url(http://4play.com.ua/img/b.jpg) bottom repeat-x; bottom:0; height:71px; width:100%;}
#r {position:absolute; background: url(http://4play.com.ua/img/r.jpg) right repeat-y; right:0; height:100%; width:101px;}
#r1 {background: url(http://4play.com.ua/img/r.jpg) right repeat-y; height:100%; width:100%;}

#tl {position:absolute; background: url(http://4play.com.ua/img/tl.jpg) top left no-repeat; top:0; left:0; height:71px; width:101px;}
#tr {position:absolute; background: url(http://4play.com.ua/img/tr.jpg) top right no-repeat; top:0; right:0; height:71px; width:101px;}
#bl {position:absolute; background: url(http://4play.com.ua/img/bl.jpg) bottom left no-repeat; bottom:0; left:0; height:71px; width:101px;}
#br {position:absolute; background: url(http://4play.com.ua/img/br.jpg) bottom right no-repeat; bottom:0; right:0; height:71px; width:101px;}

</style>
</head>
<body>
<div id="wrapper">
<div id="r1">

<div id="t"></div>
<div id="b"></div>
<div id="r"></div>
<div id="tl"></div>
<div id="tr"></div>
<div id="bl"></div>
<div id="br"></div>

<div id="page">
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
content content content content content content content content content content content content content content content content
</div>


</div>
</div>
</body>
</html>

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

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