Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正计划为测试小部件开发丰富的列表。我设计了它的外观
截屏:
我不想采用传统的将 div 放入 table 方法。因为我遇到了很多问题。
您能否就如何继续提出任何其他建议。
我已经建立了类似的东西,并建议您从列表开始。所以例如
<ul> <li>Your content here</li> ... </ul>
然后你需要一些 CSS 技巧让它看起来不错,
ul { list-style:none; padding:0; }
这与链接菜单的方法相同。这是一个列表,因此应该这样表示:)