如何在不创建新行的情况下将所有内容浮动到左侧

时间:2012-04-24 13:10:23

标签: css

我无法在我的主页上找到我的社交按钮,将所有内容浮动到左侧。

一旦我将它浮起来,页面中的其他东西就会混乱。

这是我使用的代码

<div style="position:relative;float:left;margin-right: 10px;">

<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=339021756137381";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<a href="https://twitter.com/share" data-url="<?php the_permalink(); ?>" data-counturl="<?php the_permalink(); ?>" data-text="<?php the_title(); ?>" class="twitter-share-button" data-count="<?php the_permalink(); ?>" data-via="AppleSiam"></a>
<div class="fb-like" data-href="<?php the_permalink(); ?>" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>
</div>

以上代码不会对页面中的其他代码造成任何混乱,但按钮将在新行中

enter image description here

我发现了问题,我很快就会接受答案

<div class="fb-like" data-href="<?php the_permalink(); ?>" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>

上面的代码,您可以看到data-width="450"设置得太长,无法放入同一行,而且必须转到另一行才能获取所有450px

2 个答案:

答案 0 :(得分:2)

换句话说,你想要两个按钮在同一条线上?在这种情况下,您只需要在按钮上或在其内部的容器上定义宽度,以允许它们并排放置。如果他们有空间坐在一起,那么漂浮他们就不会让他们走上新的路线。

答案 1 :(得分:1)

我建议您div idclass,然后:

#idOfDivElement,
.classOfDivElement {
    white-space: nowrap;
}

width也是有意义的。但这取决于剩余的内容。