对齐< div>元素并排
问题描述:
我知道这是一个很简单的问题,但我不能为我的生活计算出来。我有两个链接,我应用了一个背景图片。这里是它目前的样子(对于阴影,只是粗略的按钮草图道歉):
I know this is a rather simple question, but I can't figure it out for the life of me. I have two links which I've applied a background image to. Here's what it currently looks like (apologies for the shadow, just a rough sketch of a button):
但是,我想让这两个按钮并排。我不能真正弄清楚需要做什么对齐。
However, I want those two buttons to be side by side. I can't really figure out what needs to be done with the alignment.
以下是HTML
<div id="dB"}>
<a href="http://notareallink.com" title="Download" id="buyButton">Download</a>
</div>
<div id="gB">
<a href="#" title="Gallery" onclick="$j('#galleryDiv').toggle('slow');return false;" id="galleryButton">Gallery</a>
</div>
这里是CSS
#buyButton {
background: url("assets/buy.png") 0 0 no-repeat;
display:block;
height:80px;
width:232px;
text-indent:-9999px;
}
#buyButton:hover{
width: 232px;
height: 80px;
background-position: -232px 0;
}
#buyButton:active {
width: 232px;
height: 80px;
background-position: -464px 0;
}
#galleryButton {
background: url("images/galleryButton.png") 0 0 no-repeat;
display:block;
height:80px;
width:230px;
text-indent:-9999px;
}
#galleryButton:hover{
width: 230px;
height: 80px;
background-position: -230px 0;
}
#galleryButton:active {
width: 230px;
height: 80px;
background-position: -460px 0;
}
答
> float:left; 两个div应该使它们并排。
Apply float:left;
to both of your divs should make them stand side by side.