I know there is a CSS fallback for calc() for IE6-7. Likewise, I know there is a jQuery alternative.
However, is there a CSS-only fallback for calc() for IE8? If so, what is it?
I know there is a CSS fallback for calc() for IE6-7. Likewise, I know there is a jQuery alternative.
However, is there a CSS-only fallback for calc() for IE8? If so, what is it?
 
    
     
    
    You can do like this
.content{
    padding-right: 500px;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
 
    
    There is no support dynamic properties above IE 8
Dynamic properties (also called "CSS expressions") are no longer supported in Internet Explorer 8 and later, in IE8 Standards mode and higher.
Source: Read this
