Jump to content
  • 0

Меню как на Google


weqy
 Share

Question

Здравствуйте. Решил сделать меню как на Google. Но пока получилось только вот это:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Пример горизонтального CSS списка</title>
<style type="text/css">
body {margin: 0;}
#nav_menu {width: 100%;}
#nav_menu ul {list-style: none;}
#nav_menu a {
float: left;
height: 100%;
background-color: #2d2d2d;
text-decoration: none;
text-align: center;
padding:7px;
font-family: arial;
font-size: 10pt;
color: #cccccc
}
#nav_menu a:hover {background-color: #4c4c4c; color: #cccccc;}
span {border-top: 2px solid #dd4b39;}
</style>
</head>
<body>
<div id="nav_menu">
<ul>
<li><a href="#"><span>Поиск</span></a></li>
<li><a href="#">Блог</a></li>
<li><a href="#">Как помочь</a></li>
</ul>
</div>
</body>
</html>

Помогите пожалуйста найти ошибки и недочеты в коде, а также прошу дать несколько советов для продолжения. Буду очень благодарен!

Edited by weqy
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0


body {
margin: 0;
}

#nav_menu ul {
list-style: none;
}

#nav_menu a:link, #nav_menu a:visited {
float: left;
background: #2d2d2d;
text-decoration: none;
text-align: center;
padding: 7px;
font: 10pt arial;
color: #cccccc;
}

#nav_menu a:hover, #nav_menu a:active {
background: #4c4c4c;
color: #cccccc;
}

#nav_menu a.active {
border-top: 2px solid #dd4b39;
}

придираюсь :P

Edited by Shotgun
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