English 中文(简体)
将 Div 堆放在其他信头顶端元素上
原标题:Stacking Div On Top Of Other Header Elements
  • 时间:2012-05-26 07:11:17
  •  标签:
  • css
  • html

我很难在信头中放置含有联系人信息的 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;}
}

非常感谢您的帮助。

问题回答

我建议使用 而不是 div, 或者使用

问题可以通过将 contact < div < /code>放在 HTML < /div 之前来解决。

float >仅向右或向左浮动,不向上。 contact <

> 位于 < < div 的底部下方,因此,该层的浮点是正确的。在 logo 之前,将浮点放在 之前,浮点推下。

使用此 html 结构并更改您的 cs

<div id="header-bg"> 
<div class= center_wrap > 
 <div id="logo">
 <img src="/images/logo-top.png">
 </div>

 <div class="contact">
 Email: [email protected] | Phone: 1 (732) 235-7239
 </div>
</div>
</div>

无法做更多时间的运气

您已经得到了它的所有权利, 您只需要在您的类定义中有一个 typeo 。 您必须说 0px, 而不是仅仅 0 来定位 。

top:0px;
left:0px;

这里... 看看:http://jsfiddle.net/t5LZL/2/





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!