Jump to content
  • 0

overflow hidden в IE


YETI
 Share

Question

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
#hidden{
width:100%;
overflow:hidden;
}
table{
border-collapse:collapse;
}
td{
border:1px solid #000;
}
</style>
</head>

<body>
<table border="1">
<tr>
<td width="300">
 
</td>
<td> 
</td>
</tr>
<tr>
<td> 
</td>
<td>
<div id="hidden">
<table width="1000">
<tr>
<td width="200">ТЕКСТ</td>
<td width="200">ТЕКСТ</td>
<td width="200">ТЕКСТ</td>
<td width="200">ТЕКСТ</td>
<td width="200">ТЕКСТ</td>
</tr>
<tr>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
</tr>
<tr>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
</tr>
<tr>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</body>
</html>

В ИЕ не работает overflow:hidden при ширине 100%. Если указать в пикселях то все нормально. В ФФ все ок. Можете чтонибудь подсказать?

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Вы устанавливаете для блока overflow:hidden; и тем самым обрезаете содержимое блока если оно целиком в н?м не умещается. Далее Вы устанавливаете содержимому width:100% тем самым оно всегда будет умещаться в блоке. Я думаю ие так считает.

Можно использовать expression для ие... К примеру так:

width: expression(body.offsetWidth-24 + 'px');

Я отталкивался от тега body, хотя можно от любого id. А "-24" - вычел ширину полосы прокрутки.

Link to comment
Share on other sites

  • 0
Далее Вы устанавливаете содержимому width:100% тем самым оно всегда будет умещаться в блоке. Я думаю ие так считает.

Почему содержимому? 100% установлена для блока, а для таблицы в нем ширина 1000px, от этого оно должно вылезать за блок помойму. А про txpression я ничего не понимаю ща попробую почитать.

Link to comment
Share on other sites

  • 0

#hidden{
width:100%;
overflow:hidden;
border:1px solid #f00;
position:relative;
height:200;
}
table{
border-collapse:collapse;
position:absolute;
}

Уже сам нашел вот здесь http://www.defusion.org.uk/archives/2007/0...snt-hide-in-ie/

Добавление position:relative в div и absolute в таблицу почемуто помогает и все вроде работает.

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