1

我目前正在为一个网站制作一个菜单,但遇到了一个问题:我有一个应该在左侧的徽标和应该在右侧的菜单按钮。这是我到目前为止得到的:

<!DOCTYPE HTML>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Share:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
<meta charset="utf-8">
<title>Menu</title>

<style type="text/css">

body {
  margin: 0;
  padding: 0;
  font-family: 'Share', cursive;
}

#header {
  background-color: ;
}

#header_logo {
  width: ;
  margin-top: ;
}

#header_menu {
  width: 100%;
}

.menubutton {
  height: 2.5em;
  line-height: 2.5em;
  display: inline-block;
  background-color: ;
  margin-left: 20px;
}

a {
  font-family: 'Share', cursive;
}

a:link {text-decoration:none;}
a:visited {text-decoration:none;}
a:hover {text-decoration:underline;}
a:active {text-decoration:underline;}

</style>
</head>

<body>
<div id="wrapper" align=""> <!-- Beginning of wrapper -->


<div id="header"> <!-- Beginning of Header -->
<div id="header_logo" align="left">
    <img src="http://futurized.t15.org/fut_logo.png" style="height: 12px; z-index: 2;"/>
</div>
<div id="header_menu" align="right">
<div class="menubutton">
    <a href="">Home</a>
</div>
<div class="menubutton">
    <a href="">Info</a>
</div>
<div class="menubutton">
    <a href="">Werben</a>
</div>
<div class="menubutton" align="right" style="margin-right: 20px;">
    <a href="">Kontakt & Impressum</a>
</div>
</div>
</div> <!-- End of header -->

</div> <!-- End of wrapper -->
</body>
</html>

问题是徽标与菜单按钮不在一条线上……在我添加徽标之前,一切都很完美。我尝试了不同的东西,但没有任何效果。你们知道我该如何解决这个问题吗?

4

2 回答 2

5

添加float:left到您的#header_logodiv。

jsFiddle 示例

请注意,如果您希望间距更紧密,您可能还希望减少或消除类line-height上的属性。.menubutton

于 2013-09-16T19:44:29.987 回答
5

你也可以试试display: inline-block;

此属性允许 DOM 元素具有块元素的所有属性,但保持内联。

还要检查这篇文章

于 2013-09-16T19:44:47.320 回答