Jump to content
  • 0

разница отступа меньше пикселя


JhonyLe
 Share

Question

Доброго времени суток. Возникла следующая проблема. Есть 2 блока с позицией absolute, во втором блоке располагается меню. Между их высотой получилась разница меньше пикселя, если ставлю высоту первого блока на пиксель больше разница ещё больше становится, если на пиксель меньше, то ещё меньше. Не могу выровнять, чтобы было одинаково. При этом первый блок при загрузке страницы поднимается с помощью JS. Код прилагаю.

HTML код блоков:

<div id="active-punkt"></div>

<div id='second-menu'></div>

CSS код блоков:

#active-punkt

{

position: absolute;

margin-left: 1px;

padding: 0 5px;

z-index: 10;

font-size: 10px;

width: 53px;

color: red;

background: white;

}

#second-menu

{

position: absolute;

left: 85px;

z-index: 10;

width: 560px;

}

#second-menu ul {

clear: both;

margin: 0;

width: 100%;

padding: 0;

}

#second-menu ul li {

list-style: none;

display: inline;

}

#second-menu ul:hover li {

background: white;

opacity: 1; -moz-opacity: 1; filter:alpha(opacity=1);

}

#second-menu ul li a {

margin: 0 2px 0 2px;

padding: 0 5px 2px 5px;

float: left;

width: 64px;

height: 13px;

font-size: 10px;

color: #999999;

opacity: .6;

filter: alpha(opacity=60);

background: #ffffff;

}

#second-menu ul li a:hover

{

color: red;

background: white;

opacity: 1;

filter: alpha(opacity=100);

}

код JS для поднятия блока при загрузке страницы:

$("#active-punkt").css({top: '150px', visibility: 'visible'});

$("#active-punkt").animate({

top: '11px'

}, 1000, function() {});

В итоге между первым блоком и меню получается разница в высоте, посмотреть можно тут в правом верхнем углу между первыми двумя пунктами.

Подскажите, как можно добиться, чтобы было ровно, и почему вообще такое случилось?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

6474a8673a39.jpg

вот увеличенное изображение с обведенными краями, чтобы было видно разницу. К сожалению во всех браузерах так, или мне пока не попался тот, где нормально. Проверял в хром, опера, лиса.

Link to comment
Share on other sites

  • 0

Проблема решена. Оказалось, что виноват сдвиг пункта вверх с помощью высоты:

$("#active-punkt").css({top: '150px', visibility: 'visible'});

$("#active-punkt").animate({

top: '11px'

}, 1000, function() {});

так работает нормально:

$("#active-punkt").css({'margin-top': '150px', visibility: 'visible'});

$("#active-punkt").animate({

'margin-top': '-1px'

}, 1000, function() {$("#active-punkt").css({top: '11px'}); });

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