Jump to content
  • 0

плавающее меню


a_web
 Share

Question

Здравствуйте всем,

можно ли сделатьтоолько средствами CSS плавающее меню? Т.е. чтобы при скроллинге странице слой оставался всегда на одном и том же месте.

И еще вопрос), прописываю диву position:absolute, когда размещаю его над комбобоксами, в IE слой "режется", т.е. комбобксы через него просвечивают несмотря на z-index. В других браузерах все нормально. Как решить проблему?

Спасибо!

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Примерно следующее с фиксом для IE6 (меню слева):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
body > #sidebar
{position:fixed;}
body {margin:0;}
#sidebar {position:absolute; top:0; right:0; height:100%; width:210px; text-align:center; background-color:#dadada;}
</style>
<!--[if IE 6]>
<link rel="stylesheet" href="fix.css" type="text/css" />
<![endif]-->
</head>
<body>
<div id="sidebar">MENU</div>
</body>
</html>

Оптимизируешь сам.

fix.css

html
{overflow:hidden;}

body
{height:100%; overflow:auto;}

Для расположения иначе меняешь значения top, right, bottom, left, height, width. Для остальных элементов не забудь указать margin на размер своего меню.

В целом это выглядит так:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
body > #sidebar
{position:fixed;}
body {margin:0; text-align:center;}
#sidebar {position:absolute; top:5px; left:5px; bottom:5px; height:100%; width:210px; background-color:#dadada;}
#header {margin-left:220px; margin-top:5px; margin-right:5px; height:115px; border-bottom:solid #dadada 2px;}
#linkpanel {margin-left:220px; margin-top:9px; margin-right:5px; border:solid #dadada 2px;}
#content {margin-left:220px; margin-top:9px; margin-right:5px; border:solid #dadada 2px;}
#footer {margin:9px 5px 5px 220px; border-top:solid #dadada 2px;}
</style>
<!--[if IE 6]>
<link rel="stylesheet" href="fix.css" type="text/css" />
<![endif]-->
<body>
<div id="sidebar">MENU</div>
<div id="header">HEADER</div>
<div id="linkpanel">LINKPANEL</div>
<div id="content">CONTENT</div>
<div id="footer">FOOTER</div>
</head>
</body>
</html>

Замени "CONTENT" каким нибуть обьемным текстом и увидишь результат.

Если располагать фиксированную панель по горизонтали, то в fix.css надо указать #sidebar {right: больше, чем 5px}, т.к. IE6 полосу прокрутки включает в ширину, соответственно панель залазит на нее.

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