search
HomeWeb Front-endHTML TutorialCross-browser development experience summary (1) HTML markup_HTML/Xhtml_Web page production

为页面添加DOCTYPE
由于不同浏览器对标签,样式表的解释不尽相同,所以需要为html文件定义一个标准的文档类型,使不同浏览器尽量按照一个统一的html标准来解析渲染页面。

!DOCTYPE 声明指定文档遵从的 DTD,如:






标准HTML标签的正确使用
尽量使用div+css布局,不用table做布局。

使用table做布局容易造成代码冗余,相对

编写来说,代码繁多。并且,table需要将元素都下载后进行显示,相应的网页打开速度也较慢。

应该使用标准化的页面结构:DIV+CSS。这种布局方式代码简洁,页面浏览速度较快,页面布局灵活,改版时只需改CSS样式即可实现页面重新布局,而不用改动程序,从而降低了网站改版的成本。

注意标签的闭合关系,尤其是在form标签中嵌套div等其他标签时。
有的时候页面上会出现多余的空白,即使重新设置了margin也无法避免,这个时候有可能是页面元素标签闭合出现了不配对的情况,如:









Use the tbody element when defining the table to ensure that all browsers, including IE, can use it correctly
Even if the table does not display the defined tbody element, the browser will consider it tr The parent node of the node is an automatically added default tbody node. In order to avoid possible misunderstandings when using javascript to manipulate the tr node, it is better to add one manually, such as:






tbody>


Pay attention to the capitalization of tags and attributes
Sometimes, some events bound to elements respond in IE browsers , but it does not respond in safari or other browsers. At this time, you need to check the correctness of the event binding method. For advanced event binding, you need to write two sets of javascript to distinguish between IE and other browsers. For simple event models, you need to pay attention to the case of the bound event name. For example:



You should use lowercase onfocus here, and add the label closing symbol displayed. This is the standard way of writing.





Pay attention to the attribute value setting of the label
The language and type attributes of the <script> tag <br /> The language attribute of the <script> tag is used to define the script language version. The correct assignment should be in the form of <script> to tell the browser The browser (mainly IE) uses version 1.2 of JavaScript syntax to interpret; the type attribute is used to define the script type, which is a standard attribute of w3c, and using lowercase attributes is a standard practice. If there are no special circumstances where you need to tell the browser to interpret according to a lower version of the JavaScript language (the JavaScript version currently supported by most browsers is 1.5), generally there is no need to define the language attribute, but the type attribute needs to be defined. So you should change the <br /><br /><strong><SCRIPT Language="JavaScript"> in the code to the alt of the <script> <br /><br /><strong><a> tag and title attribute <br />Although the values ​​of the two attributes alt and title will be displayed in the form of tool tip when the mouse is hovered under IE, there is still a difference between the two. alt is the alternative display when the picture is not displayed, and title is the prompt when the mouse is placed on it. <br /><br /><strong><input> The checked and readonly attributes of the tag <br />In early versions of HTML, it was not mandatory that all attributes should be assigned values. When indicating a selected check box, <input checked> is accepted. However, according to the XHTML standard, such a grammar is not a strict XML format. Attention should be paid to the assignment of attributes and the closure of tags to comply with the development trend of HTML standards. It is written like this: <br /><br /><strong>< input checked="checked" /> <br /><br /><strong><input readonly="readonly" /> <br /><br /><strong><option> tag selected ed attribute <br /><br />For the same reason as the previous one, the selected attribute of the <option> tag in the <select> option should also be assigned a value: <br /><br />< option selected="selected " /> <br /><br /><strong><img alt="Cross-browser development experience summary (1) HTML markup_HTML/Xhtml_Web page production" > tag's align="absmiddle" attribute <br />According to XHTML standards, HTML tags should focus on the presentation of content rather than the control of style , the style should be adjusted by CSS. Therefore, some old tags and attributes have been abandoned. For example, the <em> tag and the <i> tag will cause the Chinese text of the tag content to be displayed in italics, but the <i> tag, which is simply named after a style, is obsolete. Standard, replaced by the <em> tag that expresses emphasis. In the same way, the align="absmiddle" attribute of the <img alt="Cross-browser development experience summary (1) HTML markup_HTML/Xhtml_Web page production" > tag indicates that the image and adjacent text are vertically aligned in the center. This is also an attribute indicating style. CSS should be used instead of this attribute to control the alignment style of the image to avoid two Interaction of style controls. <br /><br /><strong><iframe> The frameborder attribute of the tag <br />When using iframe, you may just set border="0" in IE to not display the iframe border, but the standard The attribute that controls the frame window border is frameborder. You should set frameborder="0" to hide the frame's border in browsers other than IE: <br /><br /><iframe frameborder="0" /> <br /><br /><strong><table> cellpadding attribute of tag <br />This attribute, like the align attribute of the <img alt="Cross-browser development experience summary (1) HTML markup_HTML/Xhtml_Web page production" > tag, is also an attribute that overrides the responsibility of HTML itself to represent content and controls the style. It specifies the space between units. From a practical point of view, it is better not to specify cellpadding, but to use CSS to control the padding of cells. <br /><br /><strong><td>The nowrap attribute of the tag <br /><br />nowrap is an attribute that indicates that the content will not wrap automatically, but like the above attribute, this is an attribute that controls the style . In HTML 4.01, the "bgcolor", "height", "width" and "nowrap" tags of the <td> tag are deprecated. In XHTML 1.0 Strict DTD, "bgcolor", "height", "width" and "nowrap" of the <td> tag are not supported. </script>
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),