Jump to content
  • 0

Верстка меню с нахлестом


lightskcom
 Share

Question

6 answers to this question

Recommended Posts

  • 0

Проблемы возникли непосредственно с версткой данного элемента.

	<ul id="menu">
<li id="menu1"><a href="#"></a></li>
<li id="menu2"><a href="#"></a></li>
<li id="menu3"><a href="#"></a></li>
<li id="menu4"><a href="#"></a></li>
<li id="menu5"><a href="#"></a></li>
<li id="menu6"><a href="#"></a></li>
</ul>

#menu{
width: 100%;
position:relative;
}
#menu li{display:inline; background: none; padding: 0 0 0 0; margin: 0 0 0 0;}
#menu li a{
display:block;
background:url(nav.png) top left no-repeat;
float:left;
width:170px;
height:30px;
}

#menu #menu1 a{
background-position:0px 0px}
#menu #menu1 a:hover{background-position:0px -30px}


#menu #menu2 a{
background-position:-150px 0px;}
#menu #menu2 a:hover {background-position:-150px -60px}

#menu #menu3 a{
background-position:-300px 0px;}
#menu #menu3 a:hover { background-position:-300px -30px}

#menu #menu4 a{
background-position:-450px 0px;}
#menu #menu4 a:hover { background-position:-450px -60px}

Проблема: при наведении на пункт(кроме 1-го) нужно изменить изображение сместившись влево на 20px, что приводит к некорректному отображению

Link to comment
Share on other sites

  • 0

косяк в том что если использовать внутри блока смещение -20px то картинка становится равной и разъезжается

#menu #menu2 a{
background-position:-150px 0px;
left: 0px;
}
#menu #menu2 a:hover {left:-20px; background-position:-150px -60px;}

а смещать необходимо, так как кнопки меню расположены в нахлест, т.е. есть общая область(на изображении) для соседних кнопок.

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