Jump to content
  • 0

Резина в меню


okunev2
 Share

Question

Есть css вот такой:

#menu {
position: absolute;
margin: 352px 0 0 213px;
}

#menu li {
float: left;
padding-right: 35px;
margin-left: -1px;
}

#menu li a {
float: left;
text-decoration: underline;
font-size: 11px;
color: #202e2e;
font-family: Verdana;
}

#menu li a:hover {
text-decoration: none;
}

				<ul id="menu">
<li><a href="#">меню1</a></li>
<li><a href="#">меню2</a></li>
</ul>

Как сделать чтобы это меню было в ширину резиновым на 100%, но при этом сохранились расстояния между пунктами меню как есть при сужении окна браузера?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Наверное как-то так:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title></title>
<style type="text/css">
* {
padding:0;
margin:0;
zoom:1;
}
#wrap {
position:relative;
margin:100px;
}
UL#menu {
position:absolute;
top:0;
left:0;
right:0;
background:#eee;
}
UL#menu:after {
content:"";
clear:both;
display:block;
}

#menu li {
float:left;
display:block;
background:#fff;
width:50%;
text-align:center;
}

#menu li A {
display:block;
font-size: 11px;
font-family: Verdana;
color: #202e2e;
line-height:2;
text-decoration:underline;
margin:0 10px;
background:#ccc;
}
#menu li A:hover{
background:#bbb;
text-decoration:none;
}
</style>
</head>

<body>
<div id="wrap">
<ul id="menu">
<li><a href="#">меню1</a></li>
<li><a href="#">меню2</a></li>
</ul>
</div>
</body>
</html>

Только вот меню ведет себя малость неадекватно при ресайзе окна просмотра в IE.

Link to comment
Share on other sites

  • 0
Наверное как-то так:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title></title>
<style type="text/css">
* {
padding:0;
margin:0;
zoom:1;
}
#wrap {
position:relative;
margin:100px;
}
UL#menu {
position:absolute;
top:0;
left:0;
right:0;
background:#eee;
}
UL#menu:after {
content:"";
clear:both;
display:block;
}

#menu li {
float:left;
display:block;
background:#fff;
width:50%;
text-align:center;
}

#menu li A {
display:block;
font-size: 11px;
font-family: Verdana;
color: #202e2e;
line-height:2;
text-decoration:underline;
margin:0 10px;
background:#ccc;
}
#menu li A:hover{
background:#bbb;
text-decoration:none;
}
</style>
</head>

<body>
<div id="wrap">
<ul id="menu">
<li><a href="#">меню1</a></li>
<li><a href="#">меню2</a></li>
</ul>
</div>
</body>
</html>

Только вот меню ведет себя малость неадекватно при ресайзе окна просмотра в IE.

Пример хороший, пасиб

Но хотелось бы чтобы у всего этого резинового меню были отсупы слева и справа от краев окна?

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