IE的代码兼容问题

来源:互联网 发布:mac下面的图标怎么减少 编辑:程序博客网 时间:2024/05/23 02:06

对于IE浏览器有事写的代码效果不尽人意,所以要对于IE浏览器设置兼容

<!DOCTYPE html>
<!--[if IE 7]>    <html class="no-js ie7 ie" lang="en"> <![endif]-->
<!--[if IE 8]>    <html class="no-js ie8 ie" lang="en"> <![endif]-->
<!--[if IE 9]>    <html class="no-js ie9 ie" lang="en"> <![endif]-->
<!--[if gt IE 9]><!-->  <html class="no-js" lang="en">  <!--<![endif]-->
<html lang="en">
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <!--IE10-->
  <meta http-equiv="X-UA-Compatible" content="IE=7,IE=8,IE=9,IE=10"/>
  <meta name=”renderer” content=”webkit|ie-comp|ie-stand”/>
</head>

0 0
原创粉丝点击