Login
Блоки в CSS
139 просмотров
Перейти к просмотру всей ветки
in Antwort Tomasson 27.10.12 22:30
не, лучше так:
#modern
{
width: 100px;
background-color: #00CC33;
position: relative;
top: 0px;
left: 0px;
z-index:1;
}
#aktuell
{
width: 100px;
background-color: #33FFFF;
position: relative;
top: -35px;
left: 90px;
z-index:2;
}
#kreativ
{
width: 100px;
background-color: #FF0033;
position: relative;
top: -70px;
left: 180px;
z-index:3;
}

тогда можно и без position: absolute;
#modern
{
width: 100px;
background-color: #00CC33;
position: relative;
top: 0px;
left: 0px;
z-index:1;
}
#aktuell
{
width: 100px;
background-color: #33FFFF;
position: relative;
top: -35px;
left: 90px;
z-index:2;
}
#kreativ
{
width: 100px;
background-color: #FF0033;
position: relative;
top: -70px;
left: 180px;
z-index:3;
}

тогда можно и без position: absolute;