我怎样才能在同一条线上获得两个div?

时间:2013-09-16 19:42:36

标签: html css styles

我目前正在为网站制作菜单并遇到问题:我的左侧有徽标,右侧有菜单按钮。这是我到目前为止所得到的:

<!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>

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

2 个答案:

答案 0 :(得分:5)

float:left添加到您的#header_logo div。

<强> jsFiddle example

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

答案 1 :(得分:5)

您也可以尝试display: inline-block;

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

另请查看此article