Jump to content
  • 0

Растянуть фон DIV по высоте DIV float


romlex
 Share

Question

Всем привет!

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

Давно с таким не сталкивался, всегда делал таблицей, но тут другой вариант, таблицей нельзя!

Причем в IE все работает "нормально" - а может и на оборот Opera глючит ;) Вобщем надо, чтоб растягивался фон!

т.е. там есть зеленый фон, он должен растянуться взависимости от высоты плавающих элементов, т.е. НЕ FIX.

Если решение возможно, буду очень благодарен!!!

Вот пример:

<!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>Untitled Document</title>
<style type="text/css">
.bg{margin-left:auto; margin-right:auto; margin-top:100px; background:#00FF99; width:600px;}
.left{ float:left; background:#993333; width:100px;}
.right{float:right; background:#3366FF; width:500px;}
</style>
</head>
<body>
<div class="bg">
<div class="left">menu</div>
<div class="right">content<br />content<br />content<br />content<br />content<br />content<br /></div>
</div>
</body>

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 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>Untitled Document</title>
<style type="text/css">
.bg{ margin:100px auto 0; background:#0f9; overflow:hidden; width:600px;}
.left{ float:left; background:#933; width:100px;}
.right{float:right; background:#36f; width:500px;}
</style>
</head>
<body>
<div class="bg">
<div class="left">menu</div>
<div class="right">content<br />content<br />content<br />content<br />content<br />content<br /></div>
</div>
</body>
</html>

Edited by hmelii
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>Untitled Document</title>
<style type="text/css">
.cont{margin:auto auto;width:600px}
.bg{float:left;margin-top:100px;background:#00FF99}
.left{float:left;background:#933; width:100px}
.right{float:right;background:#36F; width:500px}
</style>
</head>
<body>
<div class="cont">
<div class="bg">
<div class="left">menu</div>
<div class="right">content<br />content<br />content<br />content<br />content<br />content<br /></div>
</div>
</div>
</body>

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>Untitled Document</title>
<style type="text/css">
.bg{ margin:100px auto 0; background:#0f9; width:600px;}
.left{ float:left; background:#933; width:100px;}
.right{margin-left:100px; background:#36f; width:500px;}
</style>
</head>
<body>
<div class="bg">
<div class="left">menu</div>
<div class="right">content<br />content<br />content<br />content<br />content<br />content<br /></div>
</div>
</body>
</html>

Но первый способ помоиму самый прикольный зачет!!!!!!

Link to comment
Share on other sites

  • 0

Мне в шапке сайта нужно растянуть фон в блоке div. Я написал так:

.block1 {

background-image: url(images/top.gif);

background-size:100%;

width:100%;

height:100px;

} И получилось искаженное изображение - http://b-srv.ru/test.html

А надо чтобы было как на этой странице - http://b-srv.ru/index.html, тут разметка сделана таблицей - на каждой странице приходится прописывать тоже что и на всех остальных.

Пробовал так - .bg{ margin:100px auto 0; background:#0f9; overflow:hidden; width:100%;}, изображение получалось маленьким, когда увеличивал, искажалось.

Как тут можно сделать?

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