Table

table属性

属性名 含义 常用属性值
border 设置表格的边框(默认border=‘0’无边框) 像素值
cellspacing 设置单元格与单元格边框之间的空白间距 像素值默认是2像素
cellpadding 设置单元格内容与单元格边框之间的空白间距 像素值默认是1像素
width 表格宽度 像素值
height 表格高度 像素值
align 设置表格在网页中的水平对齐方式 left、center、right

表格标题

  1. <table border='1' cellspacing='0' align='center'>
  2. <caption>我是表格标题</caption>
  3. <thead>
  4. <tr>
  5. <th>
  6. <input type="checkbox" id='j_cbAll'>
  7. </th>
  8. <th>商品</th>
  9. <th>价格</th>
  10. </tr>
  11. </thead>
  12. <tbody id='j_tb'>
  13. <tr>
  14. <td>
  15. <input type="checkbox">
  16. </td>
  17. <td></td>
  18. <td></td>
  19. </tr>
  20. </tbody>
  21. </table>
  22. 表格也可以使用css来设置边框
  23. table,td{
  24. border: 1px solid pink;
  25. border-collapse: collapse; //合并重叠的边框
  26. font-size: 14px;
  27. }

表格合并

行合并:rowspan 列合并:colspan
合并的思想:将多个内容合并的时候,就要有多余的东西,把它删除
例如把三个td合并成一个,那就多余了2个,需要删除

a、ul li,等的样式初始化

  1. a {
  2. text-decoration: none;
  3. }
  4. ul {
  5. margin: 0px;
  6. padding: 0px;
  7. list-style: none;
  8. }
  9. input{
  10. background:none;
  11. outline:none;
  12. box-sizing:border-box;
  13. }
  14. input:focus :focus 选择器用于选取获得焦点的元素
  15. input:focus{
  16. border:none;
  17. }
  18. 样式书写顺序
  19. display:
  20. position:
  21. top:
  22. left:
  23. width:
  24. height:
  25. margin:
  26. padding:
  27. 下面的顺序就不重要了
  28. background-color:
  29. border:
  30. text-indent: