|
|
发表于 2022-10-6 13:45:45
|
显示全部楼层
看了一圈,又结合自己的经验,总结了一下。
题主可以都了解下,实战中,贵在选择。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(1)使用float
@柳宇航
<div class="use-float"> <div></div> <div></div></div>
.use-float>div:first-child{ width:100px; float:left;}.use-float>div:last-child{ overflow:hidden;}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(2)使用table
<table class="use-table"> <tr> <td></td> <td></td> </tr> </table>
.use-table{ border-collapse:collapse; width:100%;}.use-table>tbody>tr>td:first-child{ width:100px;}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(3)用div模拟table
<div class="use-mock-table"> <div></div> <div></div></div>
.use-mock-table{ display:table; width:100%;}.use-mock-table>div{ display:table-cell;}.use-mock-table>div:first-child{ width:100px;}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(4)使用flex
@何凯
<div class="use-flex"> <div></div> <div></div></div>
.use-flex{ display:flex;}.use-flex>div:first-child{ flex:none; width:100px;}.use-flex>div:last-child{ flex:1;}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
效果图:(在以上样式基础上,我又加了高度和边框,才能看到下面的样子。。。)
|
|