我有这个代码:
<?php if(count($this->items)): ?>
<section class="itemList">
<?php foreach ($this->items as $item): ?>
<...>
<?php endforeach; ?>
</section>
<...> 表示每个项目的项目标题、描述等...:我如何在 css/html 上工作以使这些项目显示在固定数量的行上,比如 3,而不是唯一的长列? 感谢任何可以提供帮助的人