我建议您使用
<table>或CSS。
CSS是更灵活的首选。一个例子是:
<!-- of course, you should move the inline CSS style to your stylesheet --><!-- main container, width = 70% of page, centered --><div id="contentBox" > <!-- columns divs, float left, no margin so there is no space between column, width=1/3 --> <div id="column1" > ConTENT </div> <div id="column2" > ConTENT </div> <div id="column3" > ConTENT </div></div>
使用float:left会使3列相互粘连,并从居中的div“内容框”中的左侧开始进入。



