Jump to content
  • 0

Наложить div на футер


olejan
 Share

Question

Существует два дива в две колонки и подвал.Правый фиксированный, а левый резиновый,подвал привязан к левому,т. е. при растяжении левого дива подвал ползет вместе с нижней границей левого дива.

Вопрос: Как сделать так,что бы левый див стал наложенным на подвал на определенное количество пикселей?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Новичок, да еще и не до конца понял ситуацию.

Верхний отступ у подвала сделать отрицательным не помогает?

А еще лучше код выложить.

если отступ отрицательный то подвал накладывается на правый див,а надо,чтоб див на подвал

код css

#left{

width: 368px;

float: left;

background: aquamarine;

}

#right{

background: blueviolet;

overflow: hidden;

}

#logo{

width: 368px;

height: 140px;

background: red;

}

#extended{

background: crimson;

width: 363px;

height: 120px;

padding: 1px;

}

#submenu{

background: yellow;

width: 200px;

height: 250px;

margin-top: 10px;

margin-left: 163px;

padding: 1px;

}

#menu{

float: left;

}

#picture{

background: yellow;

width: 363px;

height: 169px;

float: right;

}

#news{

width: 50%;

height: 200px;

background: yellow;

float: left;

}

#event{

width: 50%;

height: 200px;

background: yellowgreen;

margin-left: auto;

}

.clear{

clear: both;

}

#data{

height: 300px;

}

div#footer{

background: blanchedalmond;

width: 100%;

height: 100px;

padding: 1px;

margin-top: -50px;

}

div#content-clear{ /* Данный блок нужен, чтобы подвал не налезал на контент */

clear:both;

height: 100px;

}

код html

<!--

To change this template, choose Tools | Templates

and open the template in the editor.

-->

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

<title></title>

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

<link rel="stylesheet" type="text/css" href="lab3.css" />

</head>

<body>

<div id="left">

<div id="logo">logo</div>

<div id="extended">annotation</div>

<div id="submenu">submenu</div>

</div>

<div id="right">

<div id="menu">Menu</div>

<div id="picture">Picture</div>

<div class="clear"></div>

<div id="news">News</div>

<div id="event">Event</div>

<div id="data">Data</div>

</div>

<div id="footer">footer</div>

</body>

</html>

Edited by olejan
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