Jump to content
  • 0

Высота блока (Использование вложенных слоев)


creaturee
 Share

Question

Подскажите как задать высоту блока с использованием вложенных слоев и чтобы без скролла было. Вот что имею, а скролл все равно есть:


<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Высота блока</title>
<style type="text/css">
html, body {
height: 100%; /* Высота родителя */
margin: 0; /* Убираем отступы у страницы */
}
.layer {height:100%;
}
.layer div{
height: 100%; /* Высота */
background: #fc0;
padding: 20px;
border: 1px solid #000;
}
</style>
</head>
<body>
<div class="layer">
<div>Высота слоя 100%</div>
</div>
</body>
</html>

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Всё правильно вы сделали, только не учли, что высота равна 100% + 40px (от padding). Используйте к примеру box-sizing для изменения блочной модели. Или стиль перенесите в layer, а у div уберите высоту, оставив только padding.

Link to comment
Share on other sites

  • 0

Сработало. А если нужно добавить:

margin:20px;

Как это сделать правильно и без скролла?


<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Высота блока</title>
<style type="text/css">
html, body {
height: 100%; /* Высота родителя */
margin: 0; /* Убираем отступы у страницы */
}
.layer {
height:100%;
background: #fc0;
}
.layer div{
padding: 20px;
}
</style>
</head>
<body>
<div class="layer">
<div>Высота слоя 100%</div>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0

Конкретно в вашей ситуации - лучше позиционированием, наверно.

.layer {
height:100%;
position: relative;
background: #fc0;
}
.layer div{
position: absolute;
top: 20px;
bottom: 20px;
width: 100%;
}

Ну ли оставить всё, как щас есть, и внутрь вложенного дива вложить ещё один, задав ему высоту 100%.

Чего-то более здравых идей в голову не приходит.

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