gpt4 book ai didi

css - 垂直对齐不适用于 li

转载 作者:行者123 更新时间:2023-11-28 12:16:50 25 4
gpt4 key购买 nike

我试图让我的 li 元素在中间垂直对齐。

但看起来 vertical-align 不起作用。有什么想法吗?

HTML

<body>
<div class="toolbar">
<ul>
<li>
<input type="radio" value="one" name="try" />
<img src="try1_30X30.png"/>
hello
</li>
<li>
<input type="radio" value="two" name="try" />
<img src="try2_30X30.png"/>
world
</li>
</ul>
</div>
</body>

CSS

.toolbar ul {
list-style-type: none;
height: 50px;
}

.toolbar ul li {
float: left;
display: block;
line-height: 50px;
padding-left: 10px;
vertical-align: middle;
}

最佳答案

尝试将 vertical-align 属性应用于 img 标签本身。

请参阅下面的代码或此处的工作示例 (http://jsbin.com/oxoMeCo/1/)

 <html>
<head>
<style type="text/css">
.toolbar ul {
list-style-type: none;
height: 50px;
}
.toolbar ul li
{
float: left;
display: block;
line-height: 50px;
padding-left: 10px;
}

.toolbar ul li img {
vertical-align:middle;

}
</style>
</head>
<body>
<div class="toolbar">
<ul>
<li>
<input type="radio" value="one" name="try" />
<img src="http://placehold.it/30x30">
hello
</li>
<li>
<input type="radio" value="two" name="try" />
<img src="http://placehold.it/30x30">
world
</li>
</ul>
</div>
</body>
</html>

关于css - 垂直对齐不适用于 li,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19127345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com