Jump to content
  • 0

В IE не могу растянуть ячейку вложенной таблицы


multio
 Share

Question

9 answers to this question

Recommended Posts

  • 0

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">

html, body{
margin: 0px;
padding:0px;
}

table{
margin-left:3px;
width: 100%;
padding: 0px;
}

table td{
margin: 0px;
padding: 0px;
}

td{
text-align:center;
}

</style>


</head>
<body>

<table style="border: 1px solid #000" cellspacing="0" class="table">
<tr>
<td style="height: 100%">
<table style="height: 100%; border: 1px solid #000" cellspacing="0">
<tr>
<td style="height: 20px; border: 1px solid red;">a</td>
</tr>
<tr>
<td>b</td>
</tr>
</table>
</td>
<td style="height: 100%">c</td>
</tr>
</table>

</body>
</html>

При вставке текста в ячейки они будут растягиватся сами.

Link to comment
Share on other sites

  • 0

я просто никогда не сталкивался с такой проблемой, что несмотря на фиксированную высоту браузер ее физически увеличивает, такое я видел только в случае если скаже таблица по высоте 100%, в ней скажем только две ячейки например 20 и 50 пикселей высотой, тогда браузер конечно растянет, но в моем случае я не понимаю почему он не растягивает вторую нижнюю ячейку, ведь ей высота не задана и стоило бы вычислять ее автоматом до нужного размера,

в моем примере если сузить окно то IE ячейка становиться 20 пикселей и меньше не становиться, но при полном окне он ее увеличивает по высоте, на какое -то "непонятное" число пикселей, откуда он их берет я не понимаю.

если использовать transitional - о все нормально по высоте, но не работают некоторые другие вещи которые мне нужны..

Link to comment
Share on other sites

  • 0
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">

html, body{
height: 100%;
margin: 0px;
padding:0px;
}

table{
width: 100%;
margin: 0px;
padding: 0px;
}

table td{
margin: 0px;
padding: 0px;
}

</style>
</head>
<body>
<table>
<tr>
<td>
<table>
<tr><td style="height: 20px; border: 1px solid red">a</td></tr>
<tr><td>b</td></tr>
</table>
</td>
<td>c</td>
</tr>
</table>
</body>
</html>

Link to comment
Share on other sites

  • 0

Ладно люди спасибо за внимание, но главная таблица не получается растянутой на 100% по высоте.

Решил попробовать сделать все div -ами.

Так что смотрите, если найдете то решение которое изначально у меня описано пишите, я гляну.

Но если ваше решение убирает растяжку для главной таблицы на 100% смысл все равно теряется.

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