Jump to content
  • 0

Высота слоя


pbeloysov
 Share

Question

<style>
.boxtext{
position: relative;
margin: 0px 4% 0 4%;
border: 1px solid #989DB1;
background-color: White;
}

.boxtext .left{
position: relative;
float: left;
width: 70%;
}

.boxtext .right{
position: relative;
margin-left: 70%;
}

</style>

<div class="boxtext">
<div class="left">текст</div>
<div class="right">текст</div>
</div>

Высота слоя boxtext увеличивается за счет дополнения информации только в слой right. Как сделать так, чтобы высота слоя выравнивалась по любому внутриннему слою?

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0
Высота слоя boxtext увеличивается за счет дополнения информации только в слой right. Как сделать так, чтобы высота слоя выравнивалась по любому внутриннему слою?

Это называется таблица :)

И кстати, наверное не любому а большему из них. Любому ? то как сейчас, чем правый не любой :)

Link to comment
Share on other sites

  • 0

а так?

<style>
.boxtext{
position: relative;
margin: 0px 4% 0 4%;
border: 1px solid #989DB1;
background-color: White;
}

.boxtext .left{
position: relative;
float: left;
width: 70%;
}

.boxtext .right{
position: relative;
margin-left: 70%;
}
.clear {
clear:both;
height:0;
font-size:0;
}

</style>

<div class="boxtext">
<div class="left">текст</div>
<div class="right">текст</div>
<div class="clear"></div>
</div>

Link to comment
Share on other sites

  • 0

<!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> </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
* {
margin:0;
padding:0;
}
BODY {
padding:0 4% 0 4%;
}
.boxtext {
background-color:#ccc;
display:table;
width:100%;
}
.boxtext .left{
width: 70%;
height:100%;
background:#3333CC;
display:table-cell;
//display:inline;
//zoom:1;
//vertical-align:top;
}
.boxtext .right{
width:30%;
background:#009900;
display:table-cell;
//display:inline;
//zoom:1;
//vertical-align:top;
}
</style>
</head>
<body>
<div class="boxtext">
<div class="left"><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p><p>текст</p></div>
<div class="right">текст</div>
</div>
</body>
</html>

Данная конструкция прекрасно работает в совместимых со стандартами браузерах. В IE же ведет себя как в примере выше. В принципе, можно при помощи парочки скриптов заставить макет отображаться одинаково и в FF, и в Opera, и в IE. Но мне кажется, что вам это нафиг не надо :) Действительно проще таблицей.

Link to comment
Share on other sites

  • 0

Кажется я понял, что нужно.

<style>
.boxtext{
position: relative;
margin: 0px 4% 0 4%;
border: 1px solid #989DB1;
background-color: green;
}

.boxtext .left{
position: relative;
float: left;
width: 70%;
}

.boxtext .right{
position: relative;
margin-left: 70%;
width: 30%;
}

.boxtext .clear {
clear: both;}

</style>

<div class="boxtext">
<div class="left">текст
текст
текст
текст
текст
текст
текст</div>
<div class="right">текст</div>
<div class="clear"></div>
</div>

Мне сначала показалось что речь идет об увеличении соседнего слоя, что-бы они оба были высотой как самый высокий из них.

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