HTML规范 - 整体结构
HTML基础设施
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
nbsp;html>
|
结构顺序和视觉顺序基本保持一致
结构、表现、行为三者分离,避免内联
保持良好的简洁的树形结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
另外,请做到以下几点
如果可以写成
那么就不要写成比如
比如不要出现这种情况:
比如在这样一个列表中,li标签中的itm应去除:
HTML规范 - 代码格式
说明文案的注释方法
采用类似标签闭合的写法,与HTML统一格式;注释文案两头空格,与CSS注释统一格式。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
代码本身的注释方法
单行代码的注释也保持同行,两端空格;多行代码的注释起始和结尾都另起一行并左缩进对齐。
1 2 3 4 5 6 7 |
HTML注释在IE6中的BUG
严格的嵌套
严格的属性
常用的标签
常见标签表 | ||||
标签 | 语义 | 嵌套常见错误 | 常用属性(加粗的为不可缺少的或建议的) | |
超链接/锚 | a不可嵌套a | href,name,title,rel,target | ||
换行 |
|
| ||
按钮 | 不可嵌套表单元素 | type,disabled | ||
定义列表中的定义(描述内容) | 只能以dl为父容器,对应一个dt |
| ||
文本删除 |
|
| ||
块级容器 |
|
| ||
| 定义列表 | 只能嵌套dt和dd |
| |
定义列表中的定义术语 | 只能以dl为父容器,对应多个dd |
| ||
强调文本 |
|
| ||
表单 |
| action,target,method,name | ||
标题 | 从h1到h6,不可嵌套块级元素 |
| ||
内嵌一个网页 |
| frameborder,width,height,src,scrolling,name | ||
图像 |
| alt,src,width,height | ||
各种表单控件 |
| type,name,value,checked,disabled,maxlength,readonly,accesskey | ||
标签为input元素定义标注 |
| for | ||
| 列表项 | 只能以ul或ol为父容器 |
| |
引用样式或icon | 不可嵌套任何元素 | type,rel,href | ||
文档信息 | 只用于head | content,http-equiv,name | ||
| 有序列表 | 只能嵌套li |
| |
select中的一个选项 | 仅用于select | value,selected,disabled | ||
段落 | 不能嵌套块级元素 |
| ||
<script></script> | 引用脚本 | 不可嵌套任何元素 | type,src | |
列表框或下拉框 | 只能嵌套option或optgroup | name,disabled,multiple | ||
内联容器 |
|
| ||
强调文本 |
|
| ||
引用样式 | 不可嵌套任何元素 | type,media | ||
下标 |
|
| ||
上标 |
|
| ||
| 表格 | 只可嵌套表格元素 | width,align,background,cellpadding,cellspacing,summary,border | |
表格主体 | 只用于table |
| ||
表格中的单元格 | 只用于tr | colspan,rowspan | ||
多行文本输入控件 |
| name,accesskey,disabled,readonly,rows,cols | ||
表格表尾 | 只用于table |
| ||
表格中的标题单元格 | 只用于tr | colspan,rowspan | ||
表格表头 | 只用于table |
| ||
| 文档标题 | 只用于head |
| |
表格行 | 嵌套于table或thead、tbody、tfoot |
| ||
| 无序列表 | 只能嵌套li |
|
HTML规范 - 内容语义
内容类型决定使用的语义标签
在网页中某种类型的内容必定需要某种特定的HTML标签来承载,也就是我们常常提到的根据你的内容语义化HTML结构。
加强“资源型”内容的可访问性和可用性
在资源型的内容上加入描述文案,比如给img添加alt属性,在audio内加入文案和链接等等。
加强“不可见”内容的可访问性
背景图上的文字应该同时写在html中,并使用css使其不可见,有利于搜索引擎抓取你的内容,也可以在css失效的情况下看到内容。
适当使用实体
以实体代替与HTML语法相同的字符,避免浏览解析错误。
HTML规范 - 邮件内容
邮件环境
邮件内容所在上下文或者说所在外部容器(以下简称环境)都是由邮箱服务商决定的,这就要求邮件内容需要在任何一种情况下都要正确显示。
这些环境可能是以下某几种情况:
避免被嵌套在不正确的容器里
惑:因为容器可能是body或div,所以,我们邮件内容不应该是一个完整的html。
解:所以邮件内容应该是以div为根节点的html片段。
避免css冲突或被覆盖
惑:因为环境中可能已经设置了css,比如一些reset、一些.class。
解:所以我们只能使用行内style来确保我们的效果,并且在内容根节点上设置基础style,并且尽量使用div、span等无语义标签。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
内容区域
内容区域
|
避免盒模型错误
惑:因为doctype的不确定性,我们在写style的时候,应该考虑无论doctype是什么情况,都可以正常显示,doctype影响最大的就是盒模型的解析。
解:所以我们要将盒模型拆分开来写,比如我们将原本要定义在某个div上的height和padding分别写到这个div和他的父元素或子元素上。
1 2 3 |
内容
内容 |
其他注意事项
1 2 3 4 5 6 7 8 9 10 11 |
|
发现的问题及解决方案
问题:部分智能手机的邮件客户端可能会有只显示部分的bug(宽度被截)。
解决:在外面套一个同宽的table即可。
1 2 3 4 5 |
|
使用框架
推荐使用 email框架 来创建邮件内容。

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,

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor
