|
- div嵌套居中
<div> <div style="width:100px;margin:0 auto;"> <img src="img.gif" /> </div></div>
- p排版居中
<p style="text-align"> <img src="img.gif" /></p>
- table表格居中
<table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> <td align="center"> <img src="img.gif" /> </td> </tr></table>
|
|