Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
FriendFeed 提供了一个小部件,可以进行一些CSS 自定义。但是您似乎无法删除边框(所有内容周围的蓝色大边框)?小部件有一个 URL,如
http://friendfeed.com/embed/widget/FOOBAR?v=2&num=30&hide_logo=1&hide_comments_likes=0&hide_subscribe=1
FOOBAR用户名在哪里。
FOOBAR
在 CSS 中尝试 v3:
#friendfeed.widget { border: 0 !important;}
或者对于 v2:
.friendfeed.widget { border: 0 !important;}
如果您还想删除顶部的徽标,请添加:
#friendfeed .logo img { display: none; }