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.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
corol
Можно ли в этом меню изменить стиль sub-menu.
<ul>
<li><a href="#">Домой</a></li>
<li><a href="#">О компании</a></li>
<li><a href="#">Услуги</a>
<ul>
<li><a href="#">Ремонт</a></li>
<li><a href="#">Перевозки</a></li>
</ul> </li>
<li><a href="#">Как нас найти</a></li>
<li><a href="#">Реквизиты</a></li>
</ul>
ul { margin: 0; padding: 0; list-style: none; width: 150px; }
ul li { position: relative; }
li ul { position: relative; left: 0; top: 0; display: none; }
ul li a { display: block; text-decoration: none; color: #777; background: #fff; padding: 5px; border: 1px solid #ccc; border-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; width: 150px; border-bottom: 1px solid #ccc; }
i:hover ul { display: block; }
li:hover ul, li.over ul { display: block; }
<ul id="nav">
Или как переделать под такие параметры?
Link to comment
Share on other sites
1 answer 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.