Jump to content
  • 0

Не понимаю поведение элементов часть 2


shtuceron
 Share

Question

Добрый день,

Написал очень простенький код, с которым не должно было возникнуть вопросов, но...

в браузере IE верхняя строка таблицы не равна заданным 30px. Высота этих двух строк делит пополам эту таблицу.

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
}

table {
width: 100%;
height: 100%;
border: 1px green solid;
}

#wrap {
width: 100%;
height: 100%;
border: 1px red solid;
}

#firstRow {
height: 30px;
border: 1px blue solid;
}
</style>
</head>
<body>
<div id="wrap">
<table>
<tr>
<td id="firstRow">top</td>
</tr>
<tr>
<td>bottom</td>
</tr>
</table>
</div>
</body>
</html>

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

Спасибо.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

IE, надо полагать, свалился в Compatibility View и работает в режиме IE7 (нужно убрать в настройках Tools — Compat. View Settings — Display Intranet... и, на всякий случай, поставить метатег X-UA-Compatible IE=Edge)?

В IE8+ нет никаких проблем и так. В IE7-, насколько я в курсе, со стандартным доктайпом никак не решается, но, по-моему, на них уже можно смело забивать. А вообще для такой структуры точно таблица нужна?

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