Jump to content
  • 0

Два полностью независимых слоя. Один над другим.


Dasha
 Share

Question

Доброй всем ночки. Сразу прошу прощения за вопрос. Но до ответа на него я что-то не могу никак дойти.

Проблема вот в чем.

Есть два слоя. Нужно сделать так, чтобы один был над другим. При этом нужно сделать так, чтобы один слой был ровно над другим, куда бы мы этот див в body документа не вставили. То есть их содержимое друг с другом не должно быть связано никак. Чтобы, к примеру, какой-то скрипт, вставленный в один слой, не трогал вообще никак другой, не смещал его никуда.

Вариант с тем, чтобы у одного слоя поставить

left: 200px;

top: 20px;

а у другого

left: 200px;

top: -40px;

к примеру не подходит. Визуально один слой на другой наложится,

но такие дивы в body не переставить местами уже. Динамическое содержание верхнего слоя в этом случае также будет двигать нижний слой. Подскажите, что я не так сделала, мой код ниже. Не судите строго, я только учусь.

<style>

div#base {
position: absolute;
margin-left: 49%;

z-index: 5;
}

div#layer1 {
font-size: 50px;
color: #000080;
position: relative;

left: 200px;
top: 20px;

z-index: 2;
}


div#layer2 {

color: #ffa500; /* orange */
font-size:70px;
position: relative;

left: 200px;
top: 20px;

z-index: 1;
}
</style>

</head>
<body>


<div id="layer1">Слой 1</div>
<div id="layer2">Слой 2</div>


</body>
</html>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

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