Content not working in firefox..working beautifully in chrome what is the problem? please check and say as soon as possible.
This is HTML
<html>
    <head>
      <link rel="stylesheet" type="text/css" href="mystyle.css">
     </head>
    <body>
      <input class="go" type="checkbox">
    </body>
</html>
This is CSS Part
.go {
    top: 5px;
        left: 150px;
        position: relative;
        margin: 35px auto;
        color: white;
        text-align: center;
        text-shadow: 0 1px 0 rgba(0,0,0,.5);
        font-size: 1.0em;
        cursor: pointer;
    }
    .go:before {
        top: -5px;
        left: -50px;
        position: absolute;
        display: block;
        width: 100px;
        border: 1px solid #76011b;
        border-radius: 8px;
        background: linear-gradient(red, blue); 
        box-shadow: 0px 0px 10px rgba(19,93,158,.6);
        content: "Launch";
    }
/*content in here not working in firefox */
    .go:checked:after {
        background: linear-gradient(red, blue); 
        content: "Relaunch";
}