Jump to content
  • 0

position: fixed не работает в IE < 7мой версии - есть альтернатива?


iluha
 Share

Question

Привет всем.

Слой должен оставаться на месте при прокруте.

Доктайп строгий.

Использую position: fixed;

в FF , Safari слой на месте, в IE 7 тоже вс? отлично

но! не работает в IE в версиях меньше 7мой (((

Существует ли альтернативное решение этой задачи для более ранних версий IE?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Для FF , Safari и тп:

	div {
position: fixed;
top: некоторое_расстояние_сверху_px;
}

Для IE:

	body {
background: url(about:blank) 0 0 fixed no-repeat;
}
div {
position: absolute;
top: expression(parseInt(document.documentElement.scrollTop, 10) + "некоторое_расстояние_сверху_px");
}

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

Link to comment
Share on other sites

  • 0

Спасибо.

Пишу так:

div.floatingmenu {

position: fixed;

right: 0px;

overflow: hidden;

z-index: 999;

height: 27px;

width: 124px;

}

увы - в IE 6 так и не работает ((

дело в том, что страница скроллится только по горизонтали.

Что не так?

Где можно почитать про scrollLeft ?

Link to comment
Share on other sites

  • 0

Подскажите, как заставить работать в IE position:fixed?

Этот код не помогает

body { background: url(about:blank) 0 0 fixed no-repeat; } div { position: absolute; top: expression(parseInt(document.documentElement.scrollTop, 10) + "некоторое_расстояние_сверху_px"); }
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