-1

我有一个容器 div 900px 宽的页面,边距是自动的。我在这个 150 像素高的地方有一个标题标签。

我希望标题由左侧的图像、一些文本和右侧的另一个图像组成(与左侧的图像相反)。当我在标题 div 中放置两个 img 标签时,第二个图像低于第一个图像。我试过修改内联显示,但没有任何运气。

有任何想法吗?

CSS

html, body {
    background-color: #ccd6cc;
    margin: 0px;
    padding: 0px;   
}

body {
    font-family: Arial, Helvetica, Verdana, Sans-serif;
    font-size: 12px;
    color: #666666; 
}


.hidden {
    display: none;
}


#page-container {  
    width: 900px;
    margin: auto;
    background-color: white;
}



#header {
    height: 150px;
    background-color: yellow;
}


#content {
    line-height: 18px; 
}

img#mcclogo {   
    display:inline;
    float:left;
    margin:0;
    padding:0;
}

img#bactulogo {
    display:inline;
    float:right;
    margin:0;
    padding:0;
}

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<script type="text/javascript" src="curvy.corners.trunk.js"></script>
<head>
    <title>Intranet Layout</title>
    <link rel="stylesheet" type="text/css" href="test_layout.css" media="screen" />
</head>
<body>

<div id="page-container">
    <div id="header">
    <img id="mcclogo" src="../images/logo.gif" alt="xx" width="244" height="48" />  
    <img id="bactulogo" src="../images/bactu3.gif" alt="xx" width="260" height="124" /> 
    </div>  



    <div id="content">
    Content 
    </div>
</div>
</body>
</HTML>
4

1 回答 1

0

假设 html 是正确的,http://jsfiddle.net/sbAvB/

css 应该是这样的:

#main{
    width:900px;
    margin: auto; }

#header{
    height:150px;
    width:100%
}

#picL
{
    float:left;
}

#text{
    position:absolute;
    left:50%;
    right:50%;
    width:70%;
}

#picR
{
    float:right;
    margin-right:0px;   }​

问题可能是缺少在 css 属性中设置的位置/边距变量。要将多个对象对齐一行,一种方法是。

于 2012-08-16T14:42:25.143 回答