html(3)

新增标签
   结构标签
   header 定义文档的头部
   nav 定义显示导航链接
   article 页面上结构完整并且内容独立
   section 定义文档中的节
   aside 装载非正文内容
   hgroup 用于对网页或区段的标题进行组合
   footer 定义页脚

   组合标签
   figure 包含独立的媒体内容
   figcaption 定义figure元素的标题
   details 用于描述文档或文档某个部分的细节 open属性定义该元素是否可见
   summary 默认显示details的标题
   datalist 定义选项列表 与input配合使用 来定义input可能的值
   option  给datalist定义id名 input里的list属性为id名
   progress 定义运行进度
   mark 标记
   keygen 表单的秘钥对生成器
   
   表单控件
   email 邮箱
   tel 电话
   url 网址
   number 数字 属性min max step为每次加减几
   range 数值选择器 属性同上
   color 颜色
   search 搜索框
   date 日,月,年
   mouth 月,年
   time 小时、分钟
   week 周、年
   datetime-local 日月年小时分钟

   表单属性
   autofocus 自动获取焦点
   required 必填
   pattern 正则验证

   伪类选择器
   :link 未被访问的链接
   :visited 已被访问的链接
   :active 活动链接
   :hover 鼠标移上去
   :focus 获得焦点的input
   :first-letter 匹配元素的首字母
   :first-line 匹配元素的首行
   :first-child 匹配父元素的第一个子元素
   :before 元素的内容之前插入内容
   :after 元素的内容之后插入内容
   :first-of-type 选择属于其父元素的首个元素
   :last-of-type 
   :only-of-type
   :only-child
   :nth-child()
   :nth-last-child()
   :nth-of-type()
   :nth-last-of-type()
   :last-child
   child计算所有的子元素  type只计算类型相同的
   :root 文档的根元素
   :empty 没有子元素的元素
   :target 当前活动的元素
   :enabled 每个启用的input元素
   :disabled 禁用的input元素
   :not() 非这个元素的所有元素
   ::selection 被用户选取的部分
   :read-only 选择器被用来指定当元素处于只读状态时的样式
   :read-write 用于适配可读及可写的元素
   :default 用来指定当页面打开时默认处于选中状态的单选框或复选框的控件样式
   :indeterminate 用来指定页面打开时一组单选框,没有任何一个单选框被设为选中的整组单选框样式

你可能感兴趣的:(html(3))