在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、不能少了DOCTYPE,浏览器根据你申明的DOCTYPE决定页面渲染规则,如果不声明,不同的浏览器显示效果可能不一样。 复制代码 代码如下:<!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=utf-8" /> <title>示范</title> <meta name="keywords" content="test,示范" /> <link rel="Stylesheet" type="text/css" href="common.css" /> <style type="text/css"> .test{border:1px solid #ff0000;} .dom{width:200px;height:100px;} .notdom{width:202px;height:102px;} </style> </head> <body> <div id="main" class="test"></div> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(function(){ if($.support.boxModel){ $("#main").addClass("dom"); }else{ $("#main").addClass("notdom"); } }); </script> </body> </html> 简单补充: html写的挺好,符合标准。 建议使用utf-8编码。 http://zh.wikipedia.org/zh-cn/Gb2312 gb2312只包含6000多个汉字,不包含“镕”字。 windows记事本是gbk编码的,包含2万多个汉字。 utf-8包含全球10字。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论