Jump to content
  • 0

z-index


YanaSt
 Share

Question

Здравствуйте!

Изучаю верстку, пытаюсь по-тихонечку сверстать первый сайт.

Контент должен умещаться по ширине в 1000px, в центре экрана.

Есть два дива, мне нужно, чтобы они были на верху. Позиционирую их с помощью z-index (float не работает, т.к. общая ширина двух элементов больше 1000px).

Возникла такая проблемка: если ставлю position:absolute, то все ок. Но, мне нужно, чтобы они были наверху не экрана, а верхней границы таблицы (внутри которой они находятся). Тогда ставлю position:relative. И ничего не получается. Помогите, пожалуйста, поставить их на место B)

<center>

<table border="3" width="1000">
<tr>
<td>

<div id="right">
<img src="images/logo.png" />
</div>

<div id="left">
<img id="ecology" src="images/ecology.png" />
</div>

</td>
<tr/>
</table>

</center>

#left{
position: relative;
top: 0;
z-index:2;
}



#right{
position: relative;
z-index: 1;
}

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

CSS:

.rel-block {position: relative}
.abs-block {position: absolute; top: 0; right: 0}

HTML:

<div class="rel-block">
<div class="abs-block"></div>
</div>

блок .abs-block - позиционируется в данном случае относительно .rel-block.

Однако с таблицами это может не работать - сделайте блок в какой-то ячейке таблицы (div) и позиционируйте относительно его.

Edited by Zippovich
Link to comment
Share on other sites

  • 0

<div id="container">
<div id="header">
<h2>Султанов Денис<a href="#" title="Султанов Денис"></a></h2>
</div>
</div>

#container{
float: right;
width: auto;
height: auto;
}

#header{
width: 100%;
min-height:160px;
height:auto !important;
height: 160px;
display: block;
}

#header h2{
font:normal 80%/90% Georgia, serif;
color:#9c9c9c;
position: relative;
width: 255px;
height: 125px;
overflow: hidden;
margin: 0 25px 0 0;
padding: 0;
text-transform: inherit;
text-indent: inherit;
}

#header h2 a{
display: block;
position: absolute;
top: 0px;
left: 0px;
width:100%;
height:100%;
background-image: url('logo.jpg');
background-repeat: no-repeat;
background-position: right center;
}

Как пример, в relative absolute.

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