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)