1

嗨,我基本上想向下移动我的 logo div,它位于我的 topBar div 内,但是当我使用填充或边距时,它会将整个顶部栏向下移动,或者 logo 只是重复它自己(是的,我已经尝试过 background-repeat: 否-重复)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="style/style.css" rel="stylesheet" type="text/css" />
</head>

<body lang="en">
<div class="alert">Do you want advertsing space? Contact us: <b>advertising@chattrd.com</b></div>
<div class="topBar">
<div id="logo">
<p>chattrd</p>
</div>
</div>
</body>
</html>

body {
    background: #F7F7F7;
    font-family:Tahoma, Geneva, sans-serif;
    margin: 0;
    padding: 0;
}
.alert {
    font-size: 10px;
    color: #FFF;
    background: #1f1f1f;
    height: 14px;
    padding-left: 10px;
    font-family: Arial;
}
.topBar {
    background: #0C3;
    height: 40px;
}
#logo {
    background-image:url(../images/logo.png);
    height: 26px;
    width: 121px;
    overflow: hidden;
    display: block;
    text-indent:-999px;
}
4

1 回答 1

0

这样做的原因是您将图像用作背景。如果您想继续使用这种方法,能够垂直移动它的最简单方法是在 #logo-div 之前放置另一个 div,如下所示:

<body lang="en">
<div class="alert">Do you want advertsing space? Contact us: <b>advertising@chattrd.com</b></div>
<div class="topBar">
<div id="spaceDiv"></div>
<div id="logo"></div>
</div>
</body>

spaceDiv 的高度可用于使用以下 CSS 移动#logo-div:

#spaceDiv{
    height:6px;
}
于 2013-04-14T09:06:51.443 回答