Jump to content
  • 0

Ширина 3-ей колонки


Yahoo!
 Share

Question

Вот есть у меня главный слой. В нём 3 колонки, 2 заданной ширины, а 3-я что бы сама растянулась на оставшееся место, а как - подскажите.

Параметр height: 100% только переносит колонку на новую строку и растягивает во всю ширину главного слоя. height: auto растягивает колонку в зависимости от содержимого. А больше я незнаю чего бы применить.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Ну вот:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>3 êîëîíêè</title>

<style type="text/css">
.body {margin: 0px; padding: 0px}
.glav {width: 1024px; margin: 0 auto}
.left_colon {width 350px; float: left; background: green}
.center_colon {width: 500px; float: left; margin-left: 15px; background: red}
.right_colon {width: 350px; margin-left: 15px; background: blue; float: left}
</style>

</head>
<body>

<div class="glav">

<div class="left_colon">Ëåâàÿ êîëîíêà</div>
<div class="center_colon">Öåíòðàëüíàÿ êîëîíêà</div>
<div class="right_colon">Ïðàâàÿ êîëîíêà</div>

</div>

</body>
</html>

И мне надо, чтобы правая колонка имела ширину не которую я ей задам строго, а она сама растягивалась до конца правого края главного слоя.

Link to comment
Share on other sites

  • 0

Ну не знаю, универсального решения не нашел, да и особо не заморачивался:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>3 êîëîíêè</title>
<style type="text/css">
html, body {
margin: 0px;
padding: 0px;
width: 100%;
}
.glav {
position:relative;
width: 100%;
margin: 0px;
padding: 0px;
}
.left_colon {
position:absolute;
background: green;
width: 20%;
}
.center_colon {
position:absolute;
left:22%;
width: 30%;
background: red
}
.right_colon {
position:absolute;
left:54%;
width: 50%;
background: blue;
}
</style>
</head>
<body>
<div class="glav">
<div class="left_colon">Ëåâàÿ êîëîíêà</div>
<div class="center_colon">Öåíòðàëüíàÿ êîëîíêà</div>
<div class="right_colon">Ïðàâàÿ êîëîíêà</div>
</div>
</body>
</html>

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