facebook like button larger size

前端 未结 5 1249
一个人的身影
一个人的身影 2020-12-15 23:00

is there anyway to increase the size of the fb like plugin?

thanks.

5条回答
  •  不思量自难忘°
    2020-12-15 23:54

    Yeah, target the iframe with CSS and scale it using CSS3. Something like this:

    #fbiframe
    {
    transform: scale(2.5);
    -ms-transform: scale(2.5); 
    -webkit-transform: scale(2.5); 
    -o-transform: scale(2.5); 
    -moz-transform: scale(2.5); 
    transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -webkit-transform-origin: bottom left;
    }
    

提交回复
热议问题