1. 程式人生 > >height:calc(100%-100px)如何相容ie8

height:calc(100%-100px)如何相容ie8

做公司後臺管理系統時,右邊content-main內容塊高度出現了相容問題。是content-main包裹了iframe。如何相容ie8,貼出以下程式碼部分(css,js)原來css供參考

另一個參考地址:https://stackoverflow.com/questions/11117216/css-width-calc100-100px-alternative-using-jquery

js部分程式碼如下:

        <script>
var isIE = function(ver) {
var b = document.createElement('b')
b.innerHTML = '<!--[if IE ' + ver + ']><i></i><![endif]-->'
return b.getElementsByTagName('i').length === 1
}
var ie = isIE();
if(ie) {
$('#content-main').css('height', '100%').css('height', '+=570px');

}

</script>