Jump to content
  • 0

Растягивающееся горизональное меню


Rendom
 Share

Question

5 answers to this question

Recommended Posts

  • 0

для всего меню прописать width="100%" а для кусков width="25%".

Это если внутри самого кода.а если через css,то

всему меню присваиваете

class="myclass1"

,а элементам

class="myclass2"

.Итого

.myclass1
{
width:100%;
}

.myclass2
{
width:25%;
}

Link to comment
Share on other sites

  • 0

усложняем задачу (-:

пунктов меню шесть

100 / 6 ~= 16.66

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
body, #menu {
margin: 0;
padding: 0;
}

body {
background: #0f0;
}

#menu {
list-style-type: none;
}

#menu li {
float: left;
background: #f00;
height: 70px;
text-align: center;
width: 16.66%;
padding-top: 50px;
color: white;
}
</style>
</head>
<body>
<ul id="menu">
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
<li>item 4</li>
<li>item 5</li>
<li>item 6</li>
</ul>
</body>
</html>

1. смотрим в ФФ -- с этим можно смирится (если дизайн не сложный)

2. смотрим в ИЕ и изменяем размеры окна -- о ужас! но это можно исправить

3. смотрим в Опере -- вешаемся (-:

Link to comment
Share on other sites

  • 0
А если мы не знаеМ СКОЛЬКО У НАС ячеек?

не вижу никаких проблем...

короче а если так сделать про центрировать просто и width:100%;

как Вы это представляете. хочется увидеть код (-:

Tokolist

ну не надо утрировать:) для 4 колонок очень действенно

т.е., если пунктов шесть, я должен использовать таблицу? (-:

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