美文网首页
背景、表格应用、完善clearfix

背景、表格应用、完善clearfix

作者: 琉佳 | 来源:发表于2019-10-17 16:07 被阅读0次

background:#bfa url(img、3) center center no-repeat fixed

    如上,背景可同时设置多种但单项背景补充必须在此之下,否则无效

表格:caption表示表格的标题

      <table>创建表格

        <thead>表格的头部

            <tr>表格中的一行

            <th>表头

            <td>表格中的一个单元格

        <tbody>表格的主体

            <tr>

            <th>

            <td>

        <tfoot>表格的底部

            <tr>

            <th>

            <td>

      colspan:横向合并  (在th或td

      rowspan:纵向合并    中实现)

      设置单行或双行:tr:odd:nth-child(odd\even){设置样式内容}

      text-align:设置文本的水平对齐。

      vertical-align:设置文本的垂直对齐。

          可选值:top、baseline、middle、bottom

      border-spacing:边框间距

      border-collapse:合并边框

          collapse:合并边框

          separate:不合并边框

完善clearfix:

/*解决父子元素外边距重叠*/

.box1:before{

content: "";

display: table;

}

/*解决高度塌陷与垂直重叠*/

.clearfix:before,

.clearfix:after{

content: "";

display: table;

clear:both;

}

.clearfix{

zoom:1;

}

相关文章

网友评论

      本文标题:背景、表格应用、完善clearfix

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