1. DOCTYPE is indispensable. The browser determines the page rendering rules based on the DOCTYPE you declare. If you do not declare it, the display effects may be different in different browsers. Copy code The code is as follows:<!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>Demonstration</title> <meta name="keywords" content="test,demonstration" /> <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> Simple addition: The html is well written and meets the standards. It is recommended to use UTF-8 encoding. http://zh.wikipedia.org/zh-cn/Gb2312 gb2312 only contains more than 6,000 Chinese characters, and does not include the character "镕". Windows Notepad is encoded in GBK and contains more than 20,000 Chinese characters. UTF-8 contains 10 global characters. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
<<: Detailed explanation of Vue's TodoList case
>>: Detailed process of installing various software in Docker under Windows
This article shares a native JS implementation of...
The filter attribute defines the visual effect of...
This article shares the specific code of JS to ac...
I installed it in msi format, mainly to see the m...
wangEditor is a web rich text editor developed ba...
I recently used the input size and maxlength attri...
Table of contents Preface 1. The significance of ...
Table of contents uni-app Introduction HTML part ...
MySQL regular sorting, custom sorting, and sortin...
Table of contents Array deduplication 1. from() s...
as follows: -m, --memory Memory limit, the format...
1. Install Docker on the server yum install docke...
This article records the detailed tutorial for in...
Achieve resultsRequirements/Functionality: How to...
The ps command in Linux is the abbreviation of Pr...