html学习----标签(二)

标签

此篇所记标签

  •  空格占位符
  • tabletr代表列,td代表行,th代表表头, cellpadding表格左右间距 、cellspacing表格上下间距,colspan跨列,rowspan跨行
  • ul:无序列表 (style="list-style-type:disc"圆点列表,style="list-style-type:circle"圆圈列表,style="list-style-type:square"正方形列表)
  • ol:有序列表(type="A"大写字母列表,type="a"小写字母列表,type="I"罗马数字列表,type="i"小写罗马数字列表)
  • li:定义列表项
  • dl:定义列表
  • dt:自定义列表项目
  • dd: 定义自列表项的描述
html学习----标签(二)_第1张图片
html:



    
    web学习
     



统计表
2018-04-16---2018-05-02
姓名 年龄 爱好 身体指标
游泳 绘画 体重 身高 心率
             
             
             
             
合计            
css:
@charset "utf-8";
/* CSS Document */
.tabtop13 {
    margin-top: 13px; /*margin-top 属性设置元素的上外边距*/
}
.tabtop13 td{
    background-color:#ffffff;
    height:25px;
    line-height:150%;
}
.font-center{ text-align:center}
.btbg{background:#e9faff !important;}
.biaoti{
    font-family: 微软雅黑;
    font-size: 26px;
    font-weight: bold;
    border-bottom:1px dashed #CCCCCC;
    color: #255e95;
}
.titfont {

    font-family: 微软雅黑;
    font-size: 16px;
    font-weight: bold;
    color: #255e95;
    background: url(../images/ico3.gif) no-repeat 15px center;
    background-color:#e9faff;
}

html学习----标签(二)_第2张图片
//无序列表
  • coffee
  • tea
  • milk
//有序列表
  1. coffee
  2. tea
  3. milk
html学习----标签(二)_第3张图片
Coffee
- black hot drink
Milk
- white cold drink

你可能感兴趣的:(html学习----标签(二))