垂直对齐
可以使用CSS来设置
<code class="css">li { height: 30px; line-height: 30px; }</code>
在您提供的代码中:
要垂直居中内容,您应该添加以下行高样式表的值:
<code class="css">.toolbar li { line-height: 100px; /* For regular list items */ } .toolbar li.button { line-height: 50px; /* For button list items */ }</code>
这将确保所有列表项及其内容垂直位于中间。
以上是如何在水平无序列表 () 内垂直居中列出项目 ()?的详细内容。更多信息请关注PHP中文网其他相关文章!