0

I have strange behaviour with firefox (other browser works good).

I have rule:

.feed.input.community .buttons .url {
    background-position-x: 9px;
}

After I call:

$('.input.feed').addClass("community");

You can see result on this screenshot.

enter image description here

Maybe anybody knows why or how I can determine why firefox not accept rule?

Community
  • 1
  • 1
neworld
  • 7,757
  • 3
  • 39
  • 61

2 Answers2

3

Here's your answer. Read this post about the background-position support

background-image animation not working in Firefox

Community
  • 1
  • 1
wirey00
  • 33,517
  • 7
  • 54
  • 65
1

This property is not a standard CSS3 property. Just a year ago, Firefox did not support this property. I have not found anything to show it does now.

See this: Is background-position-x (background-position-y) a standard W3C CSS property?

Community
  • 1
  • 1
Rob
  • 14,746
  • 28
  • 47
  • 65