zoukankan      html  css  js  c++  java
  • [转]HTML5基本布局

    HTML4布局

    HTML5布局

    基本的HTML5文档的模式为:

    <!DOCTYPE html><html lang = "en"><head><meta charset = "utf-8"><title>HTML5 Demo</title><body><header><h1></h1><h2></h2></header><nav><ul><li></li><li></li></ul></nav><section><article></article><article></article></section><aside></aside><footer></footer></body></html>

    推荐一个HTML5模板的在线编辑器

    http://jsbin.com/#javascript,html

    经常在项目中会用到reset的样式,在这里罗列出来参考下:

    HTML5 Reset Stylesheet

     
    /*
    html5doctor.com Reset Stylesheet
    v1.6.1
    Last Updated: 2010-09-17
    Author: Richard Clark - http://richclarkdesign.com
    Twitter: @rich_clark
    */
     
    html, body, div, span, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    abbr, address, cite, code,
    del, dfn, em, img, ins, kbd, q, samp,
    small, strong, sub, sup, var,
    b, i,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section, summary,
    time, mark, audio, video {
        margin:0;
        padding:0;
        border:0;
        outline:0;
        font-size:100%;
        vertical-align:baseline;
        background:transparent;
    }
     
    body {
        line-height:1;
    }
     
    article,aside,details,figcaption,figure,
    footer,header,hgroup,menu,nav,section {
        display:block;
    }
     
    nav ul {
        list-style:none;
    }
     
    blockquote, q {
        quotes:none;
    }
     
    blockquote:before, blockquote:after,
    q:before, q:after {
        content:'';
        content:none;
    }
     
    a {
        margin:0;
        padding:0;
        font-size:100%;
        vertical-align:baseline;
        background:transparent;
    }
     
    /* change colours to suit your needs */
    ins {
        background-color:#ff9;
        color:#000;
        text-decoration:none;
    }
     
    /* change colours to suit your needs */
    mark {
        background-color:#ff9;
        color:#000;
        font-style:italic;
        font-weight:bold;
    }
     
    del {
        text-decoration: line-through;
    }
     
    abbr[title], dfn[title] {
        border-bottom:1px dotted;
        cursor:help;
    }
     
    table {
        border-collapse:collapse;
        border-spacing:0;
    }
     
    /* change border colour to suit your needs */
    hr {
        display:block;
        height:1px;
        border:0;  
        border-top:1px solid #cccccc;
        margin:1em 0;
        padding:0;
    }
     
    input, select {
        vertical-align:middle;
    }

    参照:http://html5doctor.com/html-5-reset-stylesheet/


    ---------------------
    作者:lanyan
    来源:CNBLOGS
    原文:https://www.cnblogs.com/laneyfu/p/4191295.html
    版权声明:本文为作者原创文章,转载请附上博文链接!
    内容解析By:CSDN,CNBLOG博客文章一键转载插件

  • 相关阅读:
    SpringMVC之文件上传
    Spring之jdbc【继承JdbcDaoSupport】
    Spring中jdbcTemplate的用户实例
    SpringMVC之数据存储
    SpringMVC的日期转换
    SpringMVC配置解决中文乱码的过滤器
    【对数据库操作的封装成工具类之jdbc】
    实现用户注册与登入功能的案例
    【反射之Field】获取字段
    Can't get WebApplicationContext object from ContextRegistry.GetContext(): Resource handler for the 'web' protocol is not defined
  • 原文地址:https://www.cnblogs.com/admans/p/14118700.html
Copyright © 2011-2022 走看看