1

我想在 HTML 列表中垂直显示数据。有以下风格

|AEIM|
|BFJN|
|CGKO|
|DHLP|

数据应水平环绕。我有以下代码。我不确定它是如何可能的 如果我在通过 PHP 输入 4 次后使用左浮动,它会浮动到右下而不是上下。有谁知道该怎么做?

CSS

.wrapper {
    width: 800px;
    height: 300px;
    display: block;
}

HTML

<ul>
   <li>A</li>
   <li>B</li>
   <li>C</li>
   <li>D</li>
   <li>E</li>
</ul>
4

1 回答 1

1

Set up 4 <ul> and float them to the left. Here is the jsFiddle http://jsfiddle.net/zmGpY/ you can then use the wrapping div to clear them

于 2013-10-03T20:03:17.680 回答