html中table单元格添加图片完全填充

转载:http://www.cnblogs.com/zmjh/p/8810805.html

css样式如下:

.table{
                display: table; 
                border-collapse: collapse;
                width: 400px;
                height: 200px;
            }
            .tr{
                display: table-row;
                height: 100px;
            }
            .td{
                display: table-cell;
                width: 100px;
                text-align: center;
                vertical-align: middle;
                border: solid 1px red;
                table-layout: fixed;
            }
            .table .td img{
                width: 100px;
                height: 100px;
                display:block;
            }

html主要代码如下:


你可能感兴趣的:(HTML/CSS)