!!常用HTML5代码

 

HTML5图片列表,插图的图像 <figure>: 2016-1-28

<figure>
  <img src="1.jpg" />
  <figcaption>HTML5插图的图像名称</figcaption>
</figure>

 

描述列表,用这些标签来标记一些名词,术语和定义:

<dl>  
    <dt>术语</dt>  
    <dd>术语解释</dd>  
    <dt>Anxiety</dt>  
    <dd>Anxiety 女原创音乐人</dd>  
<dl>  

 

 

Header:  文档的头部,主要包含页面的标题或者导航部分.

Section:   标签定义文档中的节(section、区段)。比如章节、页眉、页脚或文档中的其他部分.用于定义页面中的主题栏目等,比如选项卡的各个部分

Nav:    导航,可以包含一组导航链接

Article:  文档正文部分,用于包含文章,贴子或者评论

Aside:   <aside> 标签定义 article 以外的内容。aside 的内容应该与 article 的内容相关。比如侧边栏,广告区等.

Footer:  文档的尾部,可以包含版权信息,链接,作者等相关信息.

 

 

 

 

 HTML文档:

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta http-equiv="Pragma" content="no-cache"> 
<script type="text/javascript" src="http://cdn.bootcss.com/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
    $("#button").click(function(){

    });
});
</script>
<style type="text/css">

</style>
</head>
<body>

</body>
</html>

 

 

 

 

 

 

position:absolute;
position:relative;
position:fixed;
.pos10-page1{background-repeat: no-repeat;background-image: url("../images/page1.jpg");background-position:0 -30px;}


opacity:0.75;filter:alpha(opacity=75);/*IE透明度*/
display:inline;
display:inline-block;


white-space:nowrap;
word-wrap:break-word;
text-overflow:ellipsis;
overflow:hidden;

.nowrap{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}/*不许换行*/
.wrap{word-wrap: break-word; word-break: normal;}/*自动换行*/
.wrap{word-break:break-all;}/*强制英文单词断行*/



text-decoration:none;
font-weight:bold;
/* placeholder */

 

 

 

 

 

 

你可能感兴趣的:(!!常用HTML5代码)