I need a CSS calc alternative for browsers (like the default Android browser) that don't support it to define dynamically the width of input text fields, leaving at right only a space for the submit button.
My actual CSS code:
div .feedburner form input[type=text] {
    width: calc(100% - 76px);
}
I tried this, adapted from here, but without success:
div .feedburner form input[type=text] {
    /** width: calc(100% - 76px); */
    padding-right: 76px;
    width: 100%;
}
 
     
     
    