html5+css3

1,文件声明,<!Doctype>,不再有严格模式和混杂模式

2语意的标签

 1,header 头

  section中

    nav导航(中上)

    aside侧边栏(中左)

    article内容(中右)

  footer底

3自定义属性约定。为一个元素,使用data-*

       <div data-title="自定义标题属性">

 jquery取:之前: jquery("selector").attr('data-title')

       h5        jquery("selector").data('title')

4表单 <input> type="tel"手机上自动调出数字键盘

     <input>  type="mail" 不会自动验证,要加正则

    

      

原文地址:https://www.cnblogs.com/leee/p/5219488.html