HTML CSS examples for HTML:Line Break
Use Firefox-specific CSS rules using @supports
<html lang="en"> <head> <style> p::after {<!--from w ww. ja v a2 s. c om--> content:" nope." } @supports (display: -moz-grid) { p::after { content:" yep!" } </style> </head> <body translate="no"> <p>Is it Mozilla? </p> </body> </html>