使用 CSS 设置列表的样式图

发布于 2024-10-19 07:33:14 字数 889 浏览 1 评论 0 原文

我有一个 Map>,我在 jsp 中对其进行迭代:

<c:forEach var='entry' items='${categoryToLinkMap}'>
  <div class="category_section">
    <h2>${entry.key.name}</h2>
    <ul>
      <c:forEach var='item' items='${entry.value}'>
        <li>
          <a href="${item.href}">${item.label}</a>
        </li>
      </c:forEach>
    </ul>
  </div>
</c:forEach>

使用以下 CSS

.category_section {
  float: left;
  width: 300px;
  height: 200px;
}

我想要实现的水平最多为 3 个部分,任何比下面包裹的还要多。我的 CSS 按照我想要的方式工作,但有一个缺点是我必须设置高度,否则 div 部分会到处都是。如果我设置高度并且类别包含许多项目,则链接会重叠。

使用 CSS 实现此目的的最佳方法是什么?对不同方法有什么想法吗?我对前端的东西很陌生,所以如果可以做得更好,请告诉我。

编辑:这是我想要做的事情的快速模型:

Mock Up

I have a Map<Category, List<Link>> that i'm iterating over in my jsp:

<c:forEach var='entry' items='${categoryToLinkMap}'>
  <div class="category_section">
    <h2>${entry.key.name}</h2>
    <ul>
      <c:forEach var='item' items='${entry.value}'>
        <li>
          <a href="${item.href}">${item.label}</a>
        </li>
      </c:forEach>
    </ul>
  </div>
</c:forEach>

With the following CSS

.category_section {
  float: left;
  width: 300px;
  height: 200px;
}

What I'm trying to achieve is a maximum of 3 sections horizontally, any more than that wrapping under. My CSS works as I want with the one drawback being I have to set the height or the div sections are all over the place. If I set the height and a category contains many items then the links overlap.

What's the best way to achieve this using CSS? Any thoughts on a different approach? I'm very new to front-end stuff so if it could be done better please let me know.

Edit: Here's a quick mock-up of what I'm trying to do:

Mock Up

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

御弟哥哥 2024-10-26 07:33:14

另一种方法是使用嵌套 UL,并将层次结构中第一个 UL 的 li 向左浮动。
在您的代码中使用clearfix css hack来自动展开浮动div:

 .clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

a different approach would be to use nested UL's and float left the li's of the first UL in the hierarchy.
with your code use the clearfix css hack to auto expand floated divs:

 .clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文