This question already has answers here:
How to align two elements on the same line without changing HTML
                                
                                    (7个答案)
                                
                        
                                5年前关闭。
            
                    
尽管尝试了很多次,但我无法在1行中添加多个按钮。

这是我的代码:

<div class="fb-like" data-href="https://www.facebook.com/xxx" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div>

<div class="g-follow" data-annotation="none" data-height="24" data-href="//plus.google.com/u/0/105096562375742" data-rel="publisher"></div>

<a href="https://twitter.com/twittert" class="twitter-follow-button" data-show-count="false" data-lang="en" data-size="large">Follow @twitter</a>


请帮我 !谢谢 !

最佳答案

Div元素始终是块级元素。这意味着它们将在自己的行上显示。为了使它们显示为内联元素,您需要在所讨论的div上设置css属性display: inline;(或inline-block取决于您想要的特定行为)。

关于jquery - 如何在1行(css)中添加多个按钮? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23636223/

10-11 00:32