Answers for "affect style css for mozilla firefox"

CSS
2

how to apply css to firefox only

@-moz-document url-prefix() { 
  .selector {
     color: lime;
  }
}
Posted by: Guest on June-04-2021
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