Jump to content
  • 0

Выровнить меню по центру


RussiaStorm
 Share

Question

html

<!doctype html>
<html>
<head>
<meta charset="windows-1251">
<title>Тест</title>
<link href="test.css" rel="stylesheet" type="text/css">
</head>

<body>
<div class="menu">
<ul>
<li><a href="">Главная</a></li>
<li><a href="">Обучение</a></li>
<li><a href="">Новости</a></li>
<li><a href="">Видео</a></li>
<li><a href="">Фотоальбом</a></li>
<li><a href="">Форум</a></li>
</ul>
</div>
</body>
</html>

и css

@charset "windows-1251";
/* CSS Document */

body {
background-color:#CCC;
font-size:14px;
font-family:Georgia, "Times New Roman", Times, serif;
}

.menu {
margin:0 auto;
width:960px;
height:65px;
background-color:black;
}

.menu ul li {
float:left;
display:inline;
list-style:none;
}

.menu ul li a {
display:block;
color:#FFF;
text-decoration:none;
font-size:16px;
padding:3px;
}

Как выровнить меню ?

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Спасибо огромное. Правда немного не то, что нужно. Пример как должно получиться -

d37ea6c9aa698c3c25a191374a785926.jpg

Чтобы этот div был по центру экрана имел ширину 920 и высоту 60, скругленные края CSS3 как пример

.menu {
width:920px;
height:60px;
margin:0 auto;
border:2px solid #333;
background-color:#f0f0f0;
-moz-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
}

а вот дальше не пойму как пункты меню распределить по центру div`а ox,oy с отступами...

Link to comment
Share on other sites

  • 0

Вы что там линейкой мерите? :) На глаз все ровно. Поиграйте со значениями padding

Не, как раз на глаз и вижу :D

с padding`ом игрался, выравнивал практически не заметно, но все таки хочется чтобы все ровно :D просто вот такая задача, хочется решить для себя ;)

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