DIV框架设计中的常用代码
内容居左/中/右:<div style="float:left;"> /<div style="float:center;">/<div style="float:right;">
隐藏内容:<div style="display:none;">
自定义长宽度的区块:<div style="width:260px; height:100px; border:1px solid #F00">此div宽度260px,高100px</div>
有时候在Div中加上 <div style="text-align:center"></div>里面的Table是不会居中的我们可以在Table中加上 margin:auto比如:
<div style="text-align:center">
<table border="1" cellpadding="3" cellspacing="0" style="width: 60%;margin:auto">
<tr><td></td></tr>
</table>
</div>
......持续更新中
你可能想看: