Jump to content
  • 0

Борьба position:absolute и position:relative с z-index


XXXVII
 Share

Question

Расскажите, по какому принципу определяется приоритет блоков, спозиционированных абсолютно и относительно? Т. е. всегда ли блок с position:absolute будет находиться над блоком с position:relative ? У меня сложилась такая ситуация в Mozilla и z-index не помогает ее исправить. Причем в IE 7 как ни странно отображается согласно моей задумке

Link to comment
Share on other sites

14 answers to this question

Recommended Posts

  • 0

Набросал примерчик, смотрите, разбирайтесь:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Title</title>
<style type="text/css">
/*<![CDATA[*/

.left {
background-color: green;
width: 200px;
height: 300px;
position: absolute;
left: 20px;
}
.right {
background-color: darkblue;
width: 400px;
height: 400px;
position: relative;
margin-left: 30%;
}
/*]]>*/
</style>
</head>
<body>

<div class="left"><!-- --></div>
<div class="right"><!-- --></div>

</body>
</html>

Link to comment
Share on other sites

  • 0

yopopt, у меня именно так и реализовано. при этом оказывается, что левый блок при сужении вылазит вверх. прошу учесть, что в левом блоке находится таблица, это кажется тоже влияет на результат. я пробовал исправить ситуацию, используя отрицательный z-index в левом блоке, однако данный метод не работает в Mozilla.

Link to comment
Share on other sites

  • 0

Там почему-то возникала такая ситуация, что при любых параметрах z-index у блоков левый блок постоянно наезжал на правый. То есть у него 2 положения получалось: либо над всеми блоками, либо под всеми. Мне кажется, что на это может влиять таблица, т.к. для них по-другому z-index обрабатывается, насколько я понял. Но до конца к сожалению я не смог разобраться с этим - пришлось придумать обходной вариант.

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