Answers for "does firefox support custom css"

CSS
2

how to apply css to firefox only

@-moz-document url-prefix() { 
  .selector {
     color: lime;
  }
}
Posted by: Guest on June-04-2021
1

firefox css code

@-moz-document url-prefix() {
  h1 {
    color: red;
  }
}
Posted by: Guest on May-14-2020

Browse Popular Code Answers by Language