表单

作者: 秋殇灬 | 来源:发表于2018-08-13 20:06 被阅读0次

    表格边框

    如需在 CSS 中设置表格边框,请使用 border 属性。
    下面的例子为 table、th 以及 td 设置了蓝色边框:

    table, th, td
    {
    border: 1px solid blue;
    }
    

    折叠边框

    border-collapse 属性设置是否将表格边框折叠为单一边框:

    table
      {
      border-collapse:collapse;
    }
    
    table,th, td
    {
    border: 1px solid black;
    }
    

    表格宽度和高度

    通过 width 和 height 属性定义表格的宽度和高度。

    下面的例子将表格宽度设置为 100%,同时将 th 元素的高度设置为 50px:

    table
    {
    width:100%;
    }
    
    th
    {
    height:50px;
    }
    

    表格文本对齐

    text-align 和 vertical-align 属性设置表格中文本的对齐方式。

    text-align 属性设置水平对齐方式,比如左对齐、右对齐或者居中:

    td
    {
    text-align:right;
    }
    

    表格内边距

    如需控制表格中内容与边框的距离,请为 td 和 th 元素设置 padding 属性:

    td
    {
    padding:15px;
    }
    

    <tr>行 <td>列
    colspan=“2”行占两个格
    rowspan= “2”列占两格
    margin: 0 outo; 居中
    border-spacing: **px; 边框像素
    border-collapse: collspse; 表格边框的合并
    <th> 表头加粗

    相关文章

      网友评论

          本文标题:表单

          本文链接:https://www.haomeiwen.com/subject/cofpbftx.html