Jump to content
  • 0

И опять про height:100% в IE


leadmonkey
 Share

Question

Есть вот такой код:

<!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=windows-1251">
<title>test</title>
<style type="text/css">
<!--
body, html {
margin:0;
padding:0;
height:auto !important;
height:100%;
}
#topdiv {
height: 40px;
width: 100%;
}
#leftdiv {
width: 300px;
left: 0px;
top: 40px;
bottom: 0px;
position: absolute;
background-color: #00CC99;
overflow: scroll;
}

#rightdiv {
position: absolute;
left: 300px;
top: 40px;
right: 0px;
bottom: 0px;
background-color: #09C;
}

-->
</style>
</head>

<body>


<div id="topdiv">
</div>
<div id="leftdiv">
</div>
<div id="rightdiv">
<iframe height="100%" width="100%"></iframe>
</div>
</body>
</html>

Проблема в том, что в IE, в отличии от всех прочих браузеров, iframe не растягивается на высоту родительского блока. Возможно ли решение без жаваскрипта?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Проблема не с iframe, а с блоком, в котором iframe находится.

IE не понимает такого:

	left: 300px;
top: 40px;
right: 0px;
bottom: 0px;

Не понимает он одновременного указания двух противоположных границ...

Link to comment
Share on other sites

  • 0

Не, родительский то как раз растягивается нормально (правда я еще в 6-м эксплорере не смотрел), но вот дочернему блоку свои размеры он сообщать отказывается. Подозреваю, что это можно обойти с помощью expression, но в жаваскрипте я несколько слабоват.

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