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.
我正在尝试创建一个水平居中的固定宽度、固定高度项目的无序列表。如果只有 1 个项目,它将位于中间。随着更多项目的添加,它将从中间向外增长。当达到容器宽度时,它将换行到下一行,如图所示。
是否有可能实现这一点并使其在 ie7、ie8 和所有其他主要浏览器中工作?非常感激任何的帮助。
非常感谢。
您可以使用inline-block在 IE7 和其他浏览器上运行良好的 CSS3 属性。
inline-block
该inline-block元素具有内联项的属性,但可以具有固定的宽度或 / 和高度。
If liis display: inline-blockand ul istext-align: center我认为这行得通。
li
display: inline-block
text-align: center
:)