Jump to content
  • 0

выравнивание блоков в ячейках таблицы


drasute
 Share

Question

Добрый день.

У меня есть таблица, в ячейках которой сидят блоки:

ea9d3b836df7ca39cfa6b7e2f58d86d6.jpg

(границы таблицы - синим цветом, дивов - чёрным)

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

Меня интересуют 2 блока, выделенные красным цветом. Я хочу, чтобы они были выровнены по нижнему краю строки таблицы.

То есть, при любом увеличении/уменьшении окна браузера или разрешения экрана вся эта хрень принимала следующий вид:

efbace8a958c7c96032e428655edb762.jpg

Задача вроде элементарная, но я не силён в CSS и не знаю как её решить.

Будьте добры, подскажите.

Edited by drasute
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 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" xml:lang="en" lang="en">

<head>
<title></title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<style type="text/css">
html, body {
height: 100%;
}
table {
width: 50%;
margin: 0 auto;
height: 50%;
border: 1px solid #000 colapsed;
}
td {
border: 1px solid #000;
vertical-align: top;
height: 100%;
}
div {
background: #c0c0c0;
margin: 0 0 5px;
}
.wraper {
height: 100%;
min-height: 100%;
width: 100%;
display: table;
background: none;
margin: 0;
}
.td1, .td2 {
background: #808080;
height: 100%;
display: table-row;
}
</style>
</head>

<body>
<table>
<tr>
<td>
<div class="wraper">
<div>111</div>
<div>222</div>
<div class="td1">333</div>
</div>
</td>
<td>
<div class="wraper">
<div>aaa</div>
<div class="td2">bbb</div>
</div>
</td>
</tr>
<tr><td colspan="2">colspan=2</td></tr>
</table>

</body>
</html>

Link to comment
Share on other sites

  • 0

Режим обозревателя ИЕ7 справляется.

Он справляется из-за того, что неправильно трактует спеку. Вот смотри.

ИЕ7 не понимает display: table-row;, но несмотря на это height: 100%; не растягивает элемент на всю высоту родителя, как это делают нормальный браузеры. Наверное в данном случае поведение ИЕ7 можно считать фичей))

Link to comment
Share on other sites

  • 0

tius

А на ИЕ6-7 забиваем?

ТС, а у тебя как так выходит, что слева три строки, а справа две?

cмотри внимательнее рисунок, там всего 2 ячейки, в одной 3 блока в другой 2.

Например


<!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" xml:lang="en" lang="en">

<head>
<title></title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<style type="text/css">
html, body {
height: 100%;
}
table {
width: 50%;
margin: 0 auto;
height: 50%;
border: 1px solid #000 colapsed;
}
td {
border: 1px solid #000;
vertical-align: top;
height: 100%;
}
div {
background: #c0c0c0;
margin: 0 0 5px;
}
.wraper {
height: 100%;
min-height: 100%;
width: 100%;
display: table;
background: none;
margin: 0;
}
.td1, .td2 {
background: #808080;
height: 100%;
display: table-row;
}
</style>
</head>

<body>
<table>
<tr>
<td>
<div class="wraper">
<div>111</div>
<div>222</div>
<div class="td1">333</div>
</div>
</td>
<td>
<div class="wraper">
<div>aaa</div>
<div class="td2">bbb</div>
</div>
</td>
</tr>
<tr><td colspan="2">colspan=2</td></tr>
</table>

</body>
</html>

спасибо!

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