Jump to content
  • 0

iframe height %


bioz00
 Share

Question

Здрасте! Как заставить ифрейм растягиваться по высоте ячейки? Без явы.

<!DOCTYPE html>
<head>
<style type="text/css">

body {
margin:0;
padding:0;
width:100%;
height:100%;
position:absolute;
}
</style>
</head>


<html>
<body>
<table height="100%" width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="green">
<tr height="100px">
<td> </td>
</tr>
<tr>
<td bgcolor="yellow">
<iframe width="100%" height="100%" src="http://google.com/"></iframe>
</td>
</tr>
<tr height="50px">
<td> </td>
</tr>
</table>
</body>
</html>

Зы. если выпилить доктайп, то все норм, но это не катит.

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Да, я извиняюсь, поторопился. В ячейке, да с height=100%, без дополнительной обертки действительно не работает. Вот так вроде работает (по крайней мере, в последних версиях):

<!DOCTYPE html>
<head>
<style type="text/css">

body {
margin:0;
padding:0;
width:100%;
height:100%;
position:absolute;
}
div {
position:absolute;
top:100px;
bottom:50px;
width:100%;
}
</style>
</head>


<html>
<body>
<table height="100%" width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="green">
<tr height="100px">
<td> </td>
</tr>
<tr>
<td bgcolor="yellow">
<div>
<iframe width="100%" height="100%" frameborder="0" src="http://google.com/"></iframe>
</div>
</td>
</tr>
<tr height="50px">
<td> </td>
</tr>
</table>
</body>
</html>

Правда, при таком подходе сама таблица оказывается не сильно нужна... :devil:

Link to comment
Share on other sites

  • 0

Да, я извиняюсь, поторопился. В ячейке, да с height=100%, без дополнительной обертки действительно не работает. Вот так вроде работает (по крайней мере, в последних версиях):

<!DOCTYPE html>
<head>
<style type="text/css">

body {
margin:0;
padding:0;
width:100%;
height:100%;
position:absolute;
}
div {
position:absolute;
top:100px;
bottom:50px;
width:100%;
}
</style>
</head>


<html>
<body>
<table height="100%" width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="green">
<tr height="100px">
<td> </td>
</tr>
<tr>
<td bgcolor="yellow">
<div>
<iframe width="100%" height="100%" frameborder="0" src="http://google.com/"></iframe>
</div>
</td>
</tr>
<tr height="50px">
<td> </td>
</tr>
</table>
</body>
</html>

Правда, при таком подходе сама таблица оказывается не сильно нужна... :devil:

Ну дык. Это выходит, что мы всех обманули :D

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