3

我需要帮助将徽标水平居中定位。它还需要垂直居中到我的链接顶部div。有人能帮我吗?

我希望我的徽标看起来像这样: 在此处输入图像描述

下面是我的 HTML 和 CSS:

HTML - http://codebin.org/view/199faa14

<div id="container">

      <div id="logo">
      <img src="images/images/logo.gif" />
      </div>

      <div id="navigation">
      navigation
      </div>

      <div id="header">
      </div>

      <div id="line">
      </div>

      <div id="content">
      content
      </div>

    </div>

CSS - http://codebin.org/view/dda88d94

body {
background: url(../images/images/bg_page.gif) center center;
}

#container {
width: 940px;
margin: 0 auto;
}

    #header {
    height: 281px;
    background: url(../images/home/header.gif) top center;
    position: relative;
    }

    #logo {
    position: absolute;
    z-index: 2;
    top: 0px
    height: 214px;
    margin: 10px auto 0 auto;
    }

    #navigation {
    position: relative;
    height: 40px;
    background: #fff;
    margin-top: 100px
    }

    #content {
    height: 541px;
    background: url(../images/home/bg_body.png) top center;
    position: relative;
    }

    #line {
    height: 4px;
    background: url(../images/home/line.gif) top center;
    position: relative;
    }
4

4 回答 4

4

在使用 javascript 之前尝试这样的事情!

.center {
width: 300px;
height: 300px;
position: absolute;
left: 50%;
top: 50%; 
margin-left: -150px;
margin-top: -150px;
}

或这个!

.image_container {
   width: 300px;
   height: 300px;
   background: #eee;
   text-align: center;
   line-height: 300px;
 }

.image_container img {
   vertical-align: middle;
 }
于 2013-06-02T16:39:43.140 回答
1

我想我理解你的问题。由于您在 html 中调用您的徽标 img,请尝试此操作。

<div id="logo">
 <img src="images/images/logo.gif" alt="logo" align="center"/>
</div>
于 2013-06-02T16:48:56.713 回答
0

您可以通过以下方式实现:

  • 显示:内联块;
  • 线高;
  • 负边距
  • text-align:justify(中间有 5 个项目 4 个链接和 1 个 img)
  • :后

在类似情况下为其他人制作的演示:http:
//dabblet.com/gist/5375725

于 2013-06-02T17:36:54.633 回答
0

有些人在使用 vertical-align: middle; 时会遇到一些问题。样式属性。CSS 需要以探测器方式编写。对于寻求快速修复的人。

.logo { left:0; top:0; height:100%; width:100px; }

<div class="logo" style="background:url('/assets/images/site-logo.png') center center no-repeat;">
  <img src="/site/logo.png" style="display:none;" />
</div>

*确保容器有位置:相对;css 属性。

它易于处理视网膜并兼容所有类型的 CSS 标记。希望这个简单的技术可以为人们节省一些时间:)

于 2016-01-11T20:05:53.687 回答