Jump to content
  • 0

IE 6 и overflow: hidden для блока с картинкой. Я чего-то не понимаю или информации о баге нет в справочнике?


KooL
 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=utf-8">
<title>1</title>
<style type="text/css">
img {
width: 500px;
height: 500px;
}
div {
overflow: hidden;
}
</style>
<body>
<div>
<img src="image.jpg" alt="image" title="image">
</div>
</body>
</html>

Во всех браузерах нет горизонтальной прокрутки, если картинка не умещается в экран, а в IE 6 есть. В более сложной структуре документа, чем из примера, это может вылиться в некоторые неприятности. Есть ли решение проблемы чисто на html, css? Толь не стоит рассказывать про width: 100% и фоновую картинку чисто для IE 6 через комментарии. Если это баг IE 6, то информацию в справочник бы внести.

Link to comment
Share on other sites

7 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>1</title>
<style type="text/css">
span {
display: block;
width: 500px;
height: 500px;
background: red;
}
div {
overflow: hidden;
width: 100%;
}
</style>
<body>
<div>
<span>dfdf</span>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0
Значит мой код с недочётом и всегда лучше указывать ширину для таких случаев, даже если поддержка IE 6 не нужна или это такое особое поведение IE 6?

Да нет, необязательно. Блочные элементы по умолчанию имеют ширину 100%. Это чисто недочёт именно ИЕ6.

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