01 2021 档案
摘要:基础选择器 通配符选择器 格式: * { 属性名:属性值; 属性名:属性值; 属性名:属性值; 。 。 } * 代表所有标签 标签选择器 格式: 关键字 { 属性名:属性值; 属性名:属性值; 属性名:属性值; 。 。 } 类选择器 格式: .类名 { 属性名:属性值; 属性名:属性值; 属性名:属
阅读全文
摘要:表格的基本结构 table: 表格最外层大标签 tr: 表格每一行 td: 表格每个单元格,默认居左 表格的完整结构 thead: 表格的头部,通常写表格每一列的标题 tbody: 表格的主体,写表格的数据 tfoot: 表格的底部,写表格的脚注 th: 表格标题的单元格。默认居中 caption:
阅读全文
摘要:无序列表 1.块级标签 2.结构ul>li 3.前面默认自带圆点符号 4.list-style-type: none; 可以去掉圆点符号 有序列表 1.块级标签 2.结构ol>li 3.前面自带1、2、3、4 4.list-style-type: none;可以去掉符号 自带属性 type 1、1
阅读全文