大家知道html表格缩进吗?下面我们就给大家详细介绍一下吧!
表格的缩进只能用空表格占位! 比如:<table width="450" border="0" cellspacing="0" cellpadding="0"> <tr> <td> </td> <td>我的左右都有空隙</td> <td> </td> </tr> </table> div的间隙如上位仁兄已经说了,可以用margin和padding两个属性,它们各有上下左右 padding-top:10px; padding-bottom:10px; padding-left:10px; padding-right:10px; margin-top:10px; margin-bottom:10px; margin-left:10px; margin-right:10px; 如果要想让两个块排在一行可以用float属性 如:<style> .aa {width:300px;} .cc{padding:6px;color:#ff0000;height:100px;width:100px;float:left;}.bb{margin:10px;color:#000000;width:100px;height:100px;float:right;} </style> <div class="aa"><div class="bb">22222222</div><div class="cc">33333333</div></div>
相信大家已经学会html表格缩进了吧!感谢大家对我们网站的支持!
相关推荐:
如何让html表格跨列