css实现左边div固定宽度,右边div自适应撑满剩下的宽度

css实现左边div固定宽度,右边div自适应撑满剩下的宽度_第1张图片




(1)使用float
 class="use-float">
    
.use-float>div:first-child{
    width:100px;
    float:left;
}
.use-float>div:last-child{
    overflow:hidden;
}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

(2)使用table
 class="use-table">
    
        
        
        

.use-table{
    border-collapse:collapse;
    width:100%;
}
.use-table>tbody>tr>td:first-child{
    width:100px;
}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

(3)用div模拟table
 class="use-mock-table">
    
.use-mock-table{
    display:table;
    width:100%;
}
.use-mock-table>div{
    display:table-cell;
}
.use-mock-table>div:first-child{
    width:100px;
}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

(4)使用flex
 class="use-flex">
    
.use-flex{
    display:flex;
}
.use-flex>div:first-child{
    flex:none;
    width:100px;
}
.use-flex>div:last-child{
    flex:1;
}

你可能感兴趣的:(css实现左边div固定宽度,右边div自适应撑满剩下的宽度)