gpt4 book ai didi

html - 无法将 ul li 列表与 div 的顶部对齐

转载 作者:太空宇宙 更新时间:2023-11-03 18:23:30 25 4
gpt4 key购买 nike

我在将 li 元素与 ul 标签和 div 标签内的顶部对齐时遇到问题。

我的CSS代码:

div{

background-color: yellow;
}

ul{

list-style-type: none;
display: inline;
}

li{
border: 1px solid #044062 /*{b-bup-border}*/;
background: #396b9e /*{b-bup-background-color}*/;
font-weight: bold;
color: #fff /*{b-bup-color}*/;
text-shadow: 0 /*{b-bup-shadow-x}*/ 1px /*{b-bup-shadow-y}*/ 1px /*{b-bup-shadow-radius}*/ #194b7e /*{b-bup-shadow-color}*/;
background-image: -webkit-gradient(linear, left top, left bottom, from( #5f9cc5 /*{b-bup-background-start}*/), to( #396b9e /*{b-bup-background-end}*/)); /* Saf4+, Chrome */
background-image: -webkit-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
background-image: -moz-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* FF3.6 */
background-image: -ms-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* IE10 */
background-image: -o-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Opera 11.10+ */
background-image: linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/);
height:15%;
position: relative;

}

这是 fiddle : http://jsfiddle.net/agkVd/如您所见,li 元素与 ul 和 div 的底部对齐(我看到 div 背景在顶部,我需要它位于底部)

谢谢...

最佳答案

从 ul 中删除填充,您将看不到任何黄色:

ul {    
list-style-type: none;
display: inline;
padding:0;
}

关于html - 无法将 ul li 列表与 div 的顶部对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21364455/

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