DIV+CSS两边自适应宽度-中间固定宽度

1.两边如果要放内容的话 就用table
<table width="100%">
   <tr>
      <td>左边自适应</td>
      <td width="100">中间固定宽度</td>
      <td>右边自适应</td>
   </tr>
</table>

2.如果只是加个背景
<div style="width:100%;background:url(xxx) no-repeat center center;">
   <div style="width:100px;margin:0 auto">中间固定宽度</div>
</div>

你可能感兴趣的:(div+css)