我很难在我的标题中放置一个包含联系信息的 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;}
}
非常感谢您的帮助。