当前位置: 代码迷 >> HTML/CSS >> html上图片居中
  详细解决方案

html上图片居中

热度:136   发布时间:2012-11-23 22:54:33.0
html下图片居中
  1. div嵌套居中

    <div>
        <div style="width:100px;margin:0 auto;">
            <img src="img.gif" />
        </div>
    </div>
    ?
  2. p排版居中

    <p style="text-align">
       <img src="img.gif" />
    </p>
    ?
  3. table表格居中

    <table cellpadding="0" cellspacing="0" border="0" width="100%">
      <tr>
        <td align="center">
             <img src="img.gif" />
        </td>
      </tr>
    </table>
    ?


  相关解决方案