ヘッダーに連絡先情報を含む div を配置するのが困難です。この問題について数時間読んでいますが、まだ解決策が見つかりません。レイアウトの右上に連絡先情報を積み重ねようとしています。
--
私が達成したいことのイメージ:
http://i45.tinypic.com/2zrgu8o.jpg
私のコードが現在生成しているものの画像:
http://i48.tinypic.com/mbhlcz.jpg
--
私のHTML:
<html>
<head>
<link rel="stylesheet" href="/css/header.css" />
</head>
<meta http-equiv="Content-Type" content="text/html; charset=big5" /></head>
<body style="margin:0; padding:0;">
<div id="logo">
<img src="/images/logo-top.png">
</div>
<div class="contact">
Email: sadlkj@yahoo.com | Phone: 1 (732) 235-7239
</div>
<div id="header-bg">
</div>
</body>
</html>
私のCSS:
#logo {
postion: fixed;
width: 300px;
top: 0;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
z-index: 1;
}
#header-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 50px;
background-image: url("/images/header-bg.png");
background-repeat: repeat-x;
z-index: -1;
}
.contact {
float:right;
margin-left:10px;
margin-bottom:10px;}
}
あなたの助けに感謝します。