所以我觉得很愚蠢,我无法弄清楚,但我的问题如下:
我有一个页脚,在页脚内我有 2 个 div,1 个包含 Facebook 图片,1 个包含版权文本。我想要做的是将它们彼此相邻浮动,但将 Facebook 图像向左对齐,文本向中心对齐。
html:
<div id="footer">
<div id="facebook"><img src="img/FB-f-Logo__blue_29.png" alt="facebook link"></div>
<div id="footerText"><p>© Copyright 2013. All Rights reserved.</p></div>
</div>
CSS:
#footer {
width: 960px;
height: 50px;
margin: 0 auto;
}
#facebook {
width: 29px;
height: 29px;
margin-top: 20px;
margin-bottom: 20px;
float: left;
}
#footerText {
float:left;
font-size: 11px;
text-align: center;
margin: 20px auto 20px auto;
}