Jump to content
  • 0

display block . непонятки


kenscl12
 Share

Question

есть код допустим простой



<div class="menu">
<div class="up">
<div class="menunav">
<ul>
<li><a href="#">Все продукты</a> </li>
</ul>
</div>

<div class="menunav">
<ul>
<li><a href="#">Алкоголь</a> </li>
</ul>
</div>

<div class="menunav">
<ul>
<li><a href="#">Автомобили</a> </li>
</ul>
</div>

<div class="menunav">
<ul>
<li><a href="#">Бытовая техника</a> </li>
</ul>
</div>
</div>
</div>

[css]

.menu{

background:url(<?php echo I_HOST.'/skins/images/menu.jpg';?>);

background-repeat:repeat-x;

background-position:top left;

width:100%;

height: 25%;

min-height: 85px;

}

.up{

padding-left: 100px;

padding-right: 100px;

height: 100%;

}

.menunav{

height:100%;

width: 25%; /* задаем ширину для div */

float: left; /* добавляем список в div */

/* задаем размер шрифта */

font-family: Verdana, Tahoma, arial, geneva, Helvetica, sans-serif;

}

.menunav ul {

list-style: none;

padding: 0px;

width: 100%;

background-color: #b5b7f4; /* задаем фоновый цвет элементов меню */

}

.menunav li a:link, .menunav li a:visited{

font-size: 90%;

margin-top:7%;

display: block;

float: left; /* располагаем список по горизонтали */

position: relative; /* контекст позиционирования для раскрывающегося меню с абсолютным позиционированием */

text-decoration: none;

width: 100%;

text-align: center;

border-right: 1px solid White;

border-left: 1px solid White;

height: 100%;

}

.menunav a {

display: block; /* пункты вложенного меню выделяются при наведении указателя */

text-decoration: none; /* удаляем подчеркивание ссылок */

color: White; /* задаем цвет шрифта */

width: 100%;

height: 100%;

}

.menunav a:hover {

color: #ff3333;

}

.menunav li:hover {

width: 100%;

}

[/css]

По идее display block должен обеспечивать чтоб вся ссылка-кнопка действовала не только по горизонтали но и по вертикали. у меня только по горизонтали действует.

помогите понять почему не как надо?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

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