我很难在信头中放置含有联系人信息的 div 信息。 我读了好几个小时了 & amp; 还没有找到一个解决方案 。 我试图在我的布局的右上方堆放我的联系人信息 。
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
我所希望实现的目标的图像 < 强/ 强 > : < / 强 >
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: [email protected] | 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;}
}
非常感谢您的帮助。