• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    自定义html标记替换html5新增元素

    在html 5增加了新元素header、footer,测试过发现IE不能解析html 5新增的元素。
    代码如下:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>无标题文档</title>
    <style type="text/css">
    <!--
    *{
    margin:0;
    padding:0;
    }
    header{
    background:#090;
    font-weight:bold;
    position:absolute;
    top:10px;
    }
    footer{
    background:#f90;
    font-weight:bold;
    position:absolute;
    bottom:10px;
    }
    -->
    </style>
    </head>
    <body>
    <header>这里是顶部</header>
    <footer>这里是尾部</footer>
    </div>
    </body>
    </html>

    用自定义标签可以解决浏览器兼容的问题
    代码如下:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns:layout>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>自定义html标签</title>
    <style type="text/css">
    <!--
    *{
    margin:0;
    padding:0;
    }
    layout\:header{
    background:#090;
    font-weight:bold;
    position:absolute;
    top:10px;
    }
    layout\:footer{
    background:#f90;
    font-weight:bold;
    position:absolute;
    bottom:10px;
    }
    -->
    </style>
    </head>
    <body>
    <layout:header>这里是顶部</layout:header>
    <layout:footer>这里是尾部</layout:footer>
    </body>
    </html>
    上一篇:HTML5的结构和语义(1):前言
    下一篇:HTML5中的新元素介绍
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    自定义html标记替换html5新增元素 自定义,html,标记,替换,html5,