我的网站位于http://www.avidest.com/。我已经放置了一个像按钮一样的按钮和一个推特跟随按钮。出于某种原因,FB按钮出现在twitter按钮下方而不是旁边。我无法弄清楚为什么。我在headertext周围放置了一个边框,让你们更容易看到它。这是我的css:
.header {background:url(images/blackwhite10202.png); background-repeat: no-repeat; background-position: center top; padding:0; margin:0 auto; width: 100%; }
.headertop{width: 100%; background: transparent; height: 30px; min-width: 1020px; padding-left: 50px; margin: 0 auto;}/*background: #d3e5e8;*/
.topholder1 { background: transparent; margin:0 auto; padding:0; }
.topholder1 .topholder2 { margin: 0 auto; width:1070px;
.header_text { width:200px; float:right; font:normal 11px Tahoma, Geneva, sans-serif; color:#9a9a9a; padding:6px 450px 10px 200px; margin:0; margin-right: 0px; border: 1px solid black;}
这是html:
<div class="header">
<div class="headertop">
<div class="topholder1">
<div class="topholder2">
<img src="images/avidestlogo50perresave.png" border="0" alt="logo" />
<div class="header_text">
Twitter button is here
FB Button is here
</div>
</div>
</div>
如何使两个按钮并排显示?感谢。
答案 0 :(得分:1)
.header_text
的宽度仅为200px,但fb小部件的宽度为450px。
并且您必须将float:left
添加到Twitter小部件。