Jump to content
  • 0

Вопрос по высоте слоев


sock4proxy
 Share

Question

Добрый день.

есть вот такая структура слоев:

html:

<div id="all">
<div id="header">
header
</div>
<div id="content">
content
</div>
</div>

При условии, что div header фиксированной высоты 300px, как сделать, чтобы div content занял всю оставшуюся высоту? те 100% - 300px...

заранее спасибо

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Могу предложить, [div id=content] вложить в еще один [div class=content]. Первый ты растягиваешь на весь экран (position: absolute) и оформляешь как тебе надо, а второму просто придаешь margin-top: 300px и пишешь в нем буквы :) Предполагается, что верхняя часть растянутого дива спрячется под хедером.

Вот пример:

<html>
<head>
<title>HEAD</title>
<style>
body {margin: 0; padding: 0;}
#global {
background-color: #DDDDDD;
border: 0px solid #998877;
height: 100%;
width: 100%;
}

#head {
height: 200px;
border: 1px solid white;
background-color: #333333;
color: white;
}

.content {
width: 100%;
height: 100%;
position: absolute;
top: 0;
bottom: 0;
background-color: #green;
border: 2px solid red;
color: white;
}

#content {
margin-top: 200px;
background-color: darkred;
}
</style>
</head>
<body>

<div id=global>
<div id=head>
HEAD >>>
</div>

<div class=content>
<div id=content>
CONTENT HERE >>>
</div>
</div>
</div>

</body>

</html>

ЗЫ - а помню можно было как-то по другому еще сделать...

Edited by _EAX_
Link to comment
Share on other sites

  • 0

В моем примере, фон применяем к class'у. А в диве 'id=content' там только текст и отступы. Я так имел в виду.

Да, и минусом еще, наверное, будет то, что если к диву применяется какие-нибудь декоративные границы (там, закругленные углы и т.п.), то сверху они скроются. Хотя может так даже лучше будет :)

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