Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

want to add simple facebook "like" module to my site. im using code generated from facebook developer site added this right after opening body tag:

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/pl_PL/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

and later inside the page:

<div class="fb-like" data-href="my site url here" data-send="false" data-width="550" data-show-faces="false"></div>

it seems to work fine except this code is giving me many css/js warnings that i see in the firebug like:

unknown property „-moz-border-radius”, unknown property: "moz-outline-style.3",[],function(a,b,c,d,e,f){(function(){var g={}.toString,h,i,j,k=e.exports={},l...

there are many such errors.

Do you know how to fix this? the whole page seems to work fine but i don't like to have this kind of issues on my page. im using jquery inside this page also so maybe this cause some problems?

share|improve this question

1 Answer

up vote 1 down vote accepted

Those errors you're getting are because there are some CSS properties that need to be defined in more than one form, in order to maximize compatibility with different browsers.

These additions to standard declarations are called vendor prefixes. For more info, you might want to take a look at this article: little link.

For instance, take the following CSS:

.roundcorners {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

-moz-border-radius is for olders version of Firefox, the newer ones support border-radius. -webkit-border-radius is for WebKit-powered browsers (Chrome, Safari).

In other words, there's no way to avoid having those errors as long as you want the like button to work in most modern browsers.

Note: that when a browser sees an unknown property/rule, it ignores the declaration, so as long as your rules are ordered properly, then this is harmless.

share|improve this answer
ok, understand this, but i have also error with Top and Right property in lines like: .fb_dialog_close_icon{background:url(static.ak.fbcdn.net/rsrc.php/v2/yA/x/IE9JII6Z1Ys.png) no-repeat scroll 0 0 transparent;_background-image:url(static.ak.fbcdn.net/rsrc.php/v2/y6/x/…\9;right:7px\9}. Why they use values like top:8px\9;right:7px\9 ? strange – abiku Sep 8 '12 at 9:31
@abiku I don't mean to sound rude but, why do you care? :) These are probably hacks for specific browsers (or might as well be encoding issues) -- as long as it's working, don't worry. You can't get an error-free page that has browser-specific hacks. I'm sure the Facebook front-end developers gave it enough thought, don't worry :P – Abody97 Sep 8 '12 at 9:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.