html标签中head中两个标签的作用

时间:2024-10-06 22:33:20

<meta name="render" content="webkit">     //浏览器使用急速模式打开

<meta http-equiv="X-UA-Compatible" content="IE=edge">  //IE浏览器使用最新的模式渲染,避免使用兼容模式

如果网页只适合在电脑上浏览,则可以在meta中加入<metaname=“applicable-device”content=“pc”>;
<metaname=“applicable-device”content=“mobile”>;

如果网页采用了响应式设计,则可以在meta中加入<metaname=“applicable-device”content=“pc,mobile”>。