注册 登录
编程论坛 jQuery论坛

[求助]table的排列

ccsky 发布于 2007-07-22 10:01, 1656 次点击

有9个table 一直竖下来
<table>
<table>
<table>
<table>
<table>
<table>
<table>
<table>
<table>

用什么样的方法可以让它两行两行的竖着排呢 ?





<table> <table>
<table> <table>
<table> <table>
<table> <table>
<table>


不想用大table固定小table 想直接用段div + css的代码

[此贴子已经被作者于2007-7-22 10:03:15编辑过]

1 回复
#2
lmhllr2007-07-24 14:13
这种当然用DIV+CSS好了。。

<style>
#div1 {
width: 402px !important;
width: 400px;
border-top: 1px solid #000;
border-left: 1px solid #000;
float: left;
}
#div1 ul {
width: 402px !important;
width: 400px;
margin: 0px;
padding: 0px;
}
#div1 li {
float: left;
width: 200px;
height: 50px;
list-style-type: none;
border-right:#000 1px solid;
border-bottom: #000 1px solid;
text-align: center;
line-height: 50px;
}
</style>
<div id=\"div1\">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
</ul>
</div>
1