FB喜欢text-align:right而不是left

时间:2011-03-11 08:07:15

标签: html facebook

http://www.facebook.com/plugins/like.php?href={0}&layout=standard&show_faces=true&width=450&action=like&colorscheme=light&height=80

我正在使用iframe。

整个代码:

string iframe = string.Format("<iframe src=\"http://www.facebook.com/plugins/like.php?href={0}&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:450px; height:35px; text-align:right;\" allowTransparency=\"true\"></iframe>", fullUrl);
            return iframe;

我遇到的问题是文本是positionibg而不是右边

2 个答案:

答案 0 :(得分:0)

这对我有用

<iframe src="http://www.facebook.com/widgets/like.php?href=<?php echo('http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); ?>"
        scrolling="no" frameborder="0"
        style="border:none; width:450px; height:80px; background-color:#CCCCCC"; align="right"></iframe>

答案 1 :(得分:0)

那是好的。您无法为iframe指定text-align。您必须在iframe中包含的文档中执行此操作。