首页 > 代码库 > html+css div百分百占满正行的两种方法

html+css div百分百占满正行的两种方法

1、

<div>

  <div style="position:fixed; width:100px;"></div>

  <div style="margin-left:100px;"></div>

</div>

 

2、

<div>

  <div style="display:table-cell; min-width:100px;"></div>

  <div style="display:table-cell; width:10000px;"></div>

</div>

html+css div百分百占满正行的两种方法