在中间制作带徽标的拆分头

时间:2013-04-27 01:03:46

标签: html css

我正在尝试设计一个菜单,菜单分为两部分,中间有一个徽标。

我现在有两种方法中的任何一种:

A,徽标div位于顶部,使菜单无法点击,如下所示:

enter image description here

或者B,菜单位于顶部,使徽标的一部分无法点击。

enter image description here

你可以see a live example here。 (我使用了第二个示例。请注意当光标与菜单栏对齐时,如何无法单击Google徽标)

here is the source

~~~~~~~~~~~~~~~~~~~~~

如何设计一个菜单,使其更好地流动并仍然可以正常运行?

1 个答案:

答案 0 :(得分:0)

#header {
  position: absolute;
  width: 100%;
  height: 26px;
  margin-left: 0 auto;
  margin-top:50px;
  z-index:9999;
}
#logo {
  text-align:center;
  position:relative;
  width:232px;
  top:30px;
  margin: 0 auto;
  z-index: 10000;
}

这样的事情不起作用吗? http://jsfiddle.net/jSgYh/6/