placement of facebook like and google + buttons inline?

前端 未结 4 1981
太阳男子
太阳男子 2021-02-08 17:26

Does anyone have any tricks to aligning these two buttons on a page? By default the iframe version of the facebook like button appears below the google plus button or vice versa

4条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-08 18:01

    Put them in a list - here's what i done (excuse the jsp)

    And the css:

    ul.like-buttons{
    float: left;
    list-style: none;
    margin: 5px 0 20px 0;
    padding: 0;
    width: 100%;
    }
    
    ul.like-buttons li{
        display: block;
        float: left;
        margin-right: 10px;
    }
    li.twitter-like{
        margin-top: 2px;
    }
    

提交回复
热议问题