Answers for "firefox 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
0

adding diffent style in firefox css

@supports ( -moz-appearance:none ){
  /* Add firefox CSS code here */
}
Posted by: Guest on August-05-2021

Browse Popular Code Answers by Language