現在、Web サイトのメニューに取り組んでいるのですが、問題が発生しました。ロゴを左側に配置し、メニュー ボタンを右側に配置する必要があります。これは私がこれまでに得たものです:
<!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>
問題は、ロゴがメニュー ボタンと一直線上にないことです... ロゴを追加する前は、すべてが完璧に機能していました。さまざまなことを試しましたが、何も機能しませんでした。どうすればその問題を解決できるか考えていますか?