Jump to content
  • 0

2 div'а поверх div


colaacaa
 Share

Question

не знаю как это сделать, есть 3 дива и картинка, необходимо положить в основной див картинку и оставшиеся 2 поверх картинки

Bezymeny-1.png

Синим цветом основной вив в котором всё распологается

Жёлтый цвет - картинка

Красным те самые 2 div'а выступающие в роли кнопок

пробовал z-index'ом но всё равное не получилось =(

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

Link to comment
Share on other sites

1 answer 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>Пример</title>
<style type="text/css">
.layer1 {
background: yellow;
position: relative;
height: 400px;
}

.layer2, .layer3 {
width: 100px;
height: 100%;
background: red;
position: absolute;
}
.layer2 { left: 0;}
.layer3 { right: 0; }
</style>
</head>
<body>
<div class="layer1">
<div class="layer2">Левый</div>
<div class="layer3">Правый</div>
</div>
</body>
</html>

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