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.
我一直在设计一个模板,但是当我谈到需要使用li项目显示一些电影的部分时,它不起作用......你看我想显示一个缩略图,然后是电影的名称,然后是季节和 eps .
li
我正在考虑UL,LI但看起来我无法让它工作......如果你们中的一些人知道如何使用 HTML 和 CSS 来做到这一点,请告诉我。
UL
LI
您可以将 a与元素<ul><li>结合使用。<figure>例子:
<ul><li>
<figure>
<li> <figure> <img src="..."> <figcaption>Description Here</figcaption> </figure> </li>
等等。
至于 CSS,将它们浮动到左侧,每隔三个元素清除一次。