Jump to content
  • 0

div не так отображается в IE


voodoo
 Share

Question

Вот код:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<div id='blok' style='background: white; text-align: center;">
много текста
</div>
</body>
</html>

css:

body,html {
margin : 0;
padding : 0;
height:100%;
max-height:100%;
overflow: hidden;
}
#blok {
position: fixed;
top: 75px;
left: 190px;
bottom: 50px;
right: 0px;
overflow: auto;
}

При таком коде в IE отображается только часть текста и нет полосы прокрутки ...

Если поменять fixed на absolute, то не чего не измениться .

Если поменять overflow: auto; на overflow: scroll; , то тоже не чего не меняется .

Если в цсс добавить :

* html #blok {
height:100%;
width:100%;
}

то блок из IE вообще пропадает ...

в опере лисичке вс? показуется как надо почти при любом раскладе.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Вот наглядный пример как нужно:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
body{
margin: 0;
padding: 0;
}
#blok{
position: absolute;
top: 70px;
left: 70px;
width: 400px;
}
.content{
overflow: auto;
height: 100px;
}
</style>
</head>
<body>
<div id="blok">
<div class="content">
Текст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст ТекстТекст Текст Текст
</div>
</div>
</body>
</html>

Это должно помочь.

Link to comment
Share on other sites

  • 0

кавычки, то просто опечатка они не прич?м ...

в тво?м примере "height: 100px;" и "width: 400px;" а мне надо чтоб окно растягивалось ... в тво?м примере конечно окно в IE смотрится нормально, но оно не растягивается ...

дело в том что если указать "width: 100%;" то окно принимает длину согласно разрешению экрана, но у меня то отступ от края ещ? "left: 70px;" ... такая же проблема и с высотой у меня отступы сверху и снизу ...

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